/* =========================
   GLOBAL
========================= */

body{
    font-family:Arial, sans-serif;
    background:#fff;
    overflow-x:hidden;
}

/* =========================
   HERO SECTION
========================= */

.login-hero{
    position:relative;
    padding:100px 0;
    background:linear-gradient(135deg,#fff0f5,#f5f7ff);
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,46,99,0.08);
    border-radius:50%;
    top:-250px;
    right:-150px;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    background:#fff;
    color:#ff2e63;
    padding:12px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    margin-bottom:25px;
}

.hero-content h1{
    font-size:64px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
    margin-bottom:25px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#6b7280;
    max-width:550px;
    margin-bottom:35px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn{
    background:linear-gradient(135deg,#ff2e63,#ff4f81);
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.hero-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(255,46,99,0.2);
    color:#fff;
}

.hero-btn-outline{
    border:2px solid #ff2e63;
    color:#ff2e63;
    padding:12px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.hero-btn-outline:hover{
    background:#ff2e63;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(255,46,99,0.2);
}

/* HERO IMAGE */

.hero-image{
    max-width:100%;
    width:700px;
    animation:float 4s ease-in-out infinite;
    position:relative;
    z-index:2;
}

/* FLOATING CARDS */

.hero-floating-card{
    position:absolute;
    background:#fff;
    padding:15px 22px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    font-weight:600;
    z-index:5;
}

.card1{
    top:120px;
    left:20px;
}

.card2{
    bottom:100px;
    right:10px;
}

/* FLOAT ANIMATION */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================
   LOGIN SECTION
========================= */

.login-section{
    padding:80px 0;
    background:#fff;
}

.login-card{
    background:#fff;
    border-radius:25px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.login-top{
    text-align:center;
    margin-bottom:35px;
}

.login-logo{
    width:90px;
    margin-bottom:20px;
}

.login-top h2{
    font-size:36px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.login-top p{
    color:#6b7280;
}

/* FORM */

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#374151;
}

.form-control{
    width:100%;
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:0 18px;
    font-size:15px;
    transition:0.3s;
}

.form-control:focus{
    border-color:#ff2e63;
    box-shadow:0 0 0 4px rgba(255,46,99,0.1);
    outline:none;
}

/* LOGIN BUTTON */

.login-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#ff2e63,#ff4f81);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
    margin-top:10px;
}

.login-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(255,46,99,0.2);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .login-hero{
        padding:70px 0;
        text-align:center;
    }

    .hero-content h1{
        font-size:46px;
    }

    .hero-content p{
        margin:auto auto 30px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image{
        width:100%;
        max-width:500px;
        margin-top:40px;
    }

    .card1{
        left:30px;
        top:80px;
    }

    .card2{
        right:20px;
        bottom:50px;
    }

}

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-floating-card{
        position:static;
        margin:15px auto;
        display:inline-block;
    }

    .login-card{
        padding:30px 25px;
    }

}

@media(max-width:576px){

    .login-hero{
        padding:50px 15px;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-btn,
    .hero-btn-outline{
        width:100%;
        text-align:center;
    }

    .login-section{
        padding:50px 15px;
    }

    .login-card{
        padding:25px 20px;
    }

    .login-top h2{
        font-size:28px;
    }

}
