* {
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body {
    min-height:100vh;
    font-family: "Montserrat",sans-serif;
    background:#05060f;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.back-car-blue {
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-1;
}

.login-container, .reset-container {
    /* background:rgba(5,6,15,.8); */
    background: rgba(0, 0, 0, .5);
    backdrop-filter:blur(10px);
    padding:45px 35px;
    border-radius:16px;
    width:100%;
    max-width:300px;
    box-shadow:0 20px 40px rgba(0,0,0,.5);
    color:#fff;
}

.header-text {
    font-family:"Unbounded",sans-serif;
    font-size:28px;
    font-weight:900;
    text-align:center;
    margin-bottom:25px;
}

input {
    min-width:100%;
    padding:14px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(255,255,255,.04);
    color:#fff;
    margin-bottom:15px;
}

input:focus {
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 2px rgba(37,99,235,.3);
}

button {
    width:100%;
    padding:14px;
    border-radius:8px;
    border:none;
    background:#2563eb;
    color:white;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
}

button:hover {
    background:#3b82f6;
}

.error {
    background:#b91c1c;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
    text-align:center;
    font-weight:700;
}

.password-recovery, .go-auth {
    display:block;
    text-align:center;
    font-size:14px;
    color:#9ca3af;
    margin-bottom:12px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.password-recovery:hover, .go-auth:hover {
    color:#2361cc;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {

    .login-container {
        padding: 35px 25px;
    }

    .heade-text {
        font-size: 26px;
        margin-bottom: 30px;
    }

}

/* Small phones */

@media (max-width: 420px) {

    body {
        padding: 10px;
    }

    .login-container {
        padding: 25px 18px;
    }

    .heade-text {
        font-size: 22px;
    }

    input {
        font-size: 0.95rem;
    }

    button {
        font-size: 1rem;
    }

}


body {
    background: #010411;
    font-family: 'Nunito', sans-serif;
}

.logo {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(40%);
}

.logo-mobile {
    display: none;
    filter: brightness(40%);
}

.container {
    height: 80vh;
}

.container, #footer {
    color: white;
}

#footer {
    bottom: 0px;
    justify-self: center;
}
@media screen and (max-width: 660px) {
    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    .container, #footer {
        padding-left: 0px;
    }
}
