/* =========================================
   RESET
========================================= */

*{
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

/* =========================================
   BODY
========================================= */

body{
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;

    overflow: hidden;

    position: relative;
}

/* =========================================
   BACKGROUND
========================================= */

body::before{
    content: '';

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.65)
    ),
    url('../img/banners/cta.jpg');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    z-index: -2;
}

/* OVERLAY */

body::after{
    content: '';

    position: absolute;

    inset: 0;

    background:
    radial-gradient(
        circle at top,
        rgba(13,110,253,0.18),
        transparent 50%
    );

    z-index: -1;
}

/* =========================================
   LOGIN CARD
========================================= */

.login-card{
    width: 100%;

    max-width: 430px;

    padding: 45px;

    border-radius: 35px;

    background:
    rgba(255,255,255,0.10);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border:
    1px solid rgba(255,255,255,0.12);

    box-shadow:
    0 25px 55px rgba(0,0,0,0.30);
}

/* =========================================
   LOGO
========================================= */

.login-logo{
    text-align: center;

    margin-bottom: 25px;
}

.login-logo img{
    height: 90px;

    object-fit: contain;

    filter:
    drop-shadow(
        0 8px 20px rgba(0,0,0,0.25)
    );
}

/* =========================================
   TITLE
========================================= */

.login-title{
    text-align: center;

    margin-bottom: 35px;
}

.login-title h2{
    color: white;

    font-size: 2.3rem;

    font-weight: 700;

    margin-bottom: 10px;
}

.login-title p{
    color:
    rgba(255,255,255,0.70);

    font-size: 0.95rem;
}

/* =========================================
   INPUTS
========================================= */

.form-control{
    height: 58px;

    border-radius: 18px;

    background:
    rgba(255,255,255,0.10);

    border:
    1px solid rgba(255,255,255,0.12);

    color: white;

    padding-left: 18px;
}

.form-control::placeholder{
    color:
    rgba(255,255,255,0.55);
}

.form-control:focus{
    background:
    rgba(255,255,255,0.12);

    border-color:
    rgba(255,255,255,0.25);

    color: white;

    box-shadow: none;
}

.form-label{
    color: white;

    font-size: 0.95rem;

    margin-bottom: 10px;
}

/* =========================================
   BUTTON
========================================= */

.login-btn{
    width: 100%;

    height: 58px;

    border: none;

    border-radius: 18px;

    background:
    linear-gradient(
        135deg,
        #0d6efd,
        #2563eb
    );

    color: white;

    font-weight: 700;

    transition: 0.35s;

    margin-top: 10px;
}

.login-btn:hover{
    transform: translateY(-4px);

    box-shadow:
    0 18px 35px rgba(13,110,253,0.35);
}

/* =========================================
   LINKS
========================================= */

.login-links{
    display: flex;

    justify-content: space-between;

    margin-top: 22px;
}

.login-links a{
    color:
    rgba(255,255,255,0.75);

    font-size: 0.9rem;

    text-decoration: none;

    transition: 0.3s;
}

.login-links a:hover{
    color: white;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 576px){

    .login-card{
        margin: 20px;

        padding: 35px 25px;

        border-radius: 28px;
    }

    .login-logo img{
        height: 75px;
    }

    .login-title h2{
        font-size: 2rem;
    }

}