/* Start login */

body {
    background-color: #000000;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.auth-container {
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.social-lighting {
    position: absolute;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.login {
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    width: 526px;
    height: fit-content;
    background: linear-gradient(121.9deg, #1c1c1cd0 0%, #050505d9 96.81%);
    backdrop-filter: blur(10px);
    padding: 30px;
    border: 1px solid #2B2B2B;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.login h1 {
    font-weight: 500;
    font-size: 20px;
    color: white;
    margin-top: 10px;
    letter-spacing: 0.05em;
    text-align: center;

}

form {
    height: 100%;
    margin-top: 2rem;
}

.login input {
    outline: none;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    background-color: transparent;
    caret-color: white;
    padding: 15px;
    width: 457px;
    height: 38px;
    color: white;
    font-size: 1.1rem;
    margin-top: 20px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

.login input::placeholder {
    color: #FFFFFF80;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.login .btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 132px;
    height: 48px;
    background: #4E47FF;
    font-weight: 700;
    font-size: 16px;
    color: white;
    outline: none;
    margin: 20px 0;
    border: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.login .no-acc p {
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;
    color: white;
}

.login .no-acc p a {
    color: #4E47FF;
}

.social {
    position: absolute;
}


.login .terms {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    color: white;
    margin-top: 20px;
}

/* End login */

/* Start media queries */

@media not all and (min-width: 998px) {
    .login {
        width: 100%;
    }

    .login form {
        width: 100%;
    }

    .login input {
        width: 100%;
    }

    .login button {
        width: 100%;
    }

    .login .logo img {
        width: 250px;
    }

    .login h1 {
        font-size: 15px;
    }

    .social-lighting {
        overflow: hidden;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* End media queries */