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

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

body {
    overflow-x: hidden;
}


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




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

.hero {
    min-height: 100vh;

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

    padding: 110px 20px;

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

    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;

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


/* ==========================================
   GLASS CARD
========================================== */

.card {
    position: relative;
    z-index: 2;

    width: min(95%, 460px);

    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: up 0.7s;
}


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

@keyframes up {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}


/* ==========================================
   LOGO
========================================== */

.logo1 {
    width: 75px;
    display: block;
    margin: 0 auto 10px;
}


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

h1,
p {
    text-align: center;
}

h1 {
    color: #10284f;
}

p {
    margin-bottom: 18px;
}


/* ==========================================
   INPUT FIELDS
========================================== */

input {
    width: 100%;
    padding: 14px;

    border: none;
    border-radius: 10px;

    margin-top: 12px;
}


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

.pass {
    position: relative;
}

.pass i {
    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-20%);

    cursor: pointer;
}


/* ==========================================
   PASSWORD STRENGTH BAR
========================================== */

.strength {
    height: 6px;

    background: #ddd;

    border-radius: 10px;

    margin-top: 12px;

    overflow: hidden;
}

#bar {
    height: 100%;
    width: 0;

    background: #6B8E23;

    transition: 0.3s;
}

small {
    display: block;
    margin-top: 6px;
}


/* ==========================================
   TERMS
========================================== */

.terms {
    display: block;
    margin: 16px 0;
    font-size: 14px;
}


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

button {
    width: 100%;

    padding: 14px;

    background: #6B8E23;
    color: #fff;

    border: none;
    border-radius: 10px;

    font-weight: bold;

    cursor: pointer;
}


/* ==========================================
   LOGIN LINK
========================================== */

.login-link {
    margin-top: 18px;
}


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

