/*=========================================
GOOGLE FONTS
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Dancing+Script:wght@700&display=swap');

/*=========================================
RESET
=========================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Poppins",sans-serif;

    background:#EEF5FC;

    color:#1B3F8B;

    overflow-x:hidden;

}

/*=========================================
PAGE
=========================================*/

.login-page{

    position:relative;

    min-height:100vh;

    width:100%;

    background:

    linear-gradient(

    rgba(255,255,255,.25),

    rgba(255,255,255,.35)

    ),

    url("../images/login-bg.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

/*=========================================
OVERLAY
=========================================*/

.background-overlay{

    position:absolute;

    inset:0;

    backdrop-filter:blur(2px);

}

/*=========================================
HEADER
=========================================*/

.login-header{

    position:relative;

    z-index:5;

    width:100%;

    padding:35px 70px;

}

.logo img{

    width:220px;

}

/*=========================================
WELCOME
=========================================*/

.welcome-section{

    position:relative;

    z-index:5;

    text-align:center;

    margin-top:20px;

}

.welcome-tag{

    display:inline-block;

    font-family:"Dancing Script",cursive;

    color:#D79C2D;

    font-size:42px;

    margin-bottom:20px;

}

.welcome-section h1{

    font-size:60px;

    font-weight:700;

    color:#17448C;

    line-height:1.2;

}

.welcome-section p{

    margin-top:25px;

    font-family:"Dancing Script",cursive;

    font-size:36px;

    color:#17448C;

}

/*=========================================
LOGIN SECTION
=========================================*/

.login-section{

    position:relative;

    z-index:5;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top:60px;

}
/*=========================================
LOGIN CARD
=========================================*/

.login-card{

    width:100%;

    max-width:700px;

    background:#ffffff;

    border-radius:30px;

    padding:45px;

    box-shadow:

    0 15px 60px rgba(22,68,140,.15);

    border:1px solid rgba(255,255,255,.8);

}

/*=========================================
INPUT GROUP
=========================================*/

.input-group{

    margin-bottom:28px;

}

.input-group label{

    display:block;

    margin-bottom:10px;

    font-size:15px;

    font-weight:600;

    color:#17448C;

}

.input-box{

    display:flex;

    align-items:center;

    gap:18px;

    height:72px;

    background:#ffffff;

    border:2px solid #DCE8F8;

    border-radius:18px;

    padding:0 22px;

    transition:.3s;

}

.input-box:hover{

    border-color:#2F6EEB;

}

.input-box:focus-within{

    border-color:#2F6EEB;

    box-shadow:

    0 0 0 5px rgba(47,110,235,.12);

}

.input-box i{

    font-size:22px;

    color:#2F6EEB;

    width:24px;

    text-align:center;

}

.input-box input{

    flex:1;

    border:none;

    outline:none;

    background:none;

    font-size:16px;

    color:#1B3F8B;

    font-family:"Poppins",sans-serif;

}

.input-box input::placeholder{

    color:#94A3B8;

}

/*=========================================
PASSWORD BUTTON
=========================================*/

.toggle-password{

    border:none;

    background:none;

    cursor:pointer;

    color:#7C8AA5;

    font-size:18px;

}

/*=========================================
LOGIN OPTIONS
=========================================*/

.login-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:20px 0 30px;

    font-size:15px;

}

.login-options label{

    display:flex;

    align-items:center;

    gap:10px;

    color:#17448C;

}

.login-options input{

    width:18px;

    height:18px;

}

.login-options a{

    text-decoration:none;

    color:#2F6EEB;

    font-weight:600;

}

/*=========================================
LOGIN BUTTON
=========================================*/

.login-btn{

    width:100%;

    height:65px;

    border:none;

    border-radius:18px;

    background:#1E63E9;

    color:#fff;

    font-size:22px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.login-btn:hover{

    background:#16448C;

    transform:translateY(-2px);

}

/*=========================================
DIVIDER
=========================================*/

.divider{

    display:flex;

    align-items:center;

    justify-content:center;

    margin:28px 0;

    color:#94A3B8;

    font-size:15px;

    font-weight:600;

}

/*=========================================
GOOGLE BUTTON
=========================================*/

.google-btn{

    width:100%;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    border:2px solid #DCE8F8;

    border-radius:18px;

    background:#fff;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    color:#17448C;

    transition:.3s;

}

.google-btn:hover{

    border-color:#2F6EEB;

    background:#F8FBFF;

}

.google-btn img{

    width:24px;

    height:24px;

}
/*=========================================
SIGNUP SECTION
=========================================*/

.signup-section{

    width:100%;

    display:flex;

    justify-content:center;

    margin-top:35px;

    position:relative;

    z-index:5;

}

.signup-card{

    width:100%;

    max-width:700px;

    background:#ffffff;

    border-radius:25px;

    padding:28px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.signup-left{

    display:flex;

    align-items:center;

    gap:20px;

}

.signup-left i{

    width:65px;

    height:65px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EAF3FF;

    color:#2F6EEB;

    font-size:28px;

}

.signup-left h3{

    color:#17448C;

    font-size:20px;

    margin-bottom:6px;

}

.signup-left p{

    color:#64748B;

    font-size:14px;

}

.signup-btn{

    padding:15px 35px;

    background:#1E63E9;

    color:#fff;

    text-decoration:none;

    border-radius:15px;

    font-weight:600;

    transition:.3s;

}

.signup-btn:hover{

    background:#17448C;

}

/*=========================================
FEATURES
=========================================*/

.features-section{

    width:100%;

    max-width:1300px;

    margin:70px auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    position:relative;

    z-index:5;

    padding:0 30px;

}

.feature-box{

    background:#ffffff;

    border-radius:25px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    width:75px;

    height:75px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:#EDF4FF;

    color:#2F6EEB;

    font-size:32px;

}

.feature-box h4{

    margin-top:25px;

    color:#17448C;

    font-size:21px;

}

.feature-box p{

    margin-top:10px;

    color:#64748B;

    line-height:1.7;

    font-size:15px;

}

/*=========================================
FOOTER
=========================================*/

.login-footer{

    padding:45px 20px;

    text-align:center;

    color:#17448C;

    font-size:15px;

    position:relative;

    z-index:5;

}
/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.features-section{

grid-template-columns:repeat(2,1fr);

}

.login-card,
.signup-card{

max-width:90%;

}

}

@media(max-width:768px){

.login-header{

padding:25px;

}

.logo img{

width:170px;

}

.welcome-tag{

font-size:34px;

}

.welcome-section h1{

font-size:38px;

}

.welcome-section p{

font-size:26px;

}

.login-card{

padding:30px;

}

.signup-card{

flex-direction:column;

gap:25px;

text-align:center;

}

.signup-left{

flex-direction:column;

}

.features-section{

grid-template-columns:1fr;

}

}

@media(max-width:480px){

.login-card{

padding:25px;

border-radius:20px;

}

.input-box{

height:60px;

}

.login-btn{

height:58px;

font-size:18px;

}

.google-btn{

height:58px;

font-size:17px;

}

.welcome-section h1{

font-size:30px;

}

.welcome-section p{

font-size:22px;

}

}