/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fb;
}


/* =========================
   NAVBAR
========================= */



/* =========================


/* =========================
   NAV LINKS
========================= */




/* =========================
   HAMBURGER
========================= */


/* =========================
   HERO SECTION
========================= */

.hero {
    min-height: 100vh;

    background: url("../assets/bg2.png")
        center center / cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;

    padding: 110px 20px;
}


/* =========================
   OVERLAY
========================= */

.overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.45)
    );
}


/* =========================
   LOGIN CARD
========================= */

.card {

    position: relative;
    z-index: 2;

    width: min(100%, 420px);

    padding: 35px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(15px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    animation: fade 0.7s ease;

}


/* =========================
   ANIMATION
========================= */

@keyframes fade {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================
   CARD CONTENT
========================= */

.card-logo {

    width: 75px;

    display: block;

    margin: 0 auto 12px;

}

h1,
p {

    text-align: center;

}

h1 {

    color: #10284f;

}

p {

    margin: 10px 0 18px;

}


/* =========================
   INPUTS
========================= */

input {

    width: 100%;

    padding: 14px;

    margin: 8px 0;

    border: none;

    border-radius: 10px;

}


/* =========================
   PASSWORD FIELD
========================= */

.pass-wrap {

    position: relative;

}

.pass-wrap i {

    position: absolute;

    right: 15px;

    top: 50%;

    transform: translateY(-50%);

    cursor: pointer;

}


/* =========================
   OPTIONS ROW
========================= */

.row {

    display: flex;

    justify-content: space-between;

    margin: 8px 0 18px;

    font-size: 13px;

}


/* =========================
   BUTTON
========================= */

button {

    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 10px;

    background: #6B8E23;

    color: white;

    font-weight: bold;

    cursor: pointer;

}

button:hover {

    background: #10284f;

}


/* =========================
   SIGNUP TEXT
========================= */

.signup {

    margin-top: 18px;

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hamburger {

        display: flex;

    }

    .nav-links {

        position: fixed;

        top: 84px;

        right: -100%;

        width: 250px;

        height: 100vh;

        background: white;

        flex-direction: column;

        padding: 30px;

        transition: 0.3s;

    }

    .nav-links.active {

        right: 0;

    }

    .brand h2 {

        font-size: 15px;

    }

}