.login-box input{
    height:58px !important;
    font-size:16px !important;
}

.login-form input{
    height:58px;
    font-size:16px;
}

body{
    margin:0;
    padding:0;
    background:#ffffff;
    font-family:Arial, sans-serif;
}

*{
    box-sizing:border-box;
}

.content-wrapper{
    width:100%;
    max-width:none;
    margin:0;
    padding:0;
}



.error-box{

    background:#fff3f3;

    border:1px solid #ffb5b5;

    color:#b00020;

    padding:15px;

    border-radius:8px;

    margin-bottom:20px;
}

.success-box{

    background:#f2fff2;

    border:1px solid #9ed89e;

    color:#006b1f;

    padding:15px;

    border-radius:8px;

    margin-bottom:20px;
}


/* ==================================================
   HERO
================================================== */

.login-hero{
    display:grid;
    grid-template-columns:42% 58%;
    border-radius:22px;
    overflow:hidden;
    border:1px solid #e5e5e5;
    margin-bottom:12px;
}

.login-box{
    background:#ffffff;

    padding:45px;

    border:2px solid #ff6b00;
    border-radius:24px;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.08);

    margin:16px;

    position:relative;
    z-index:5;
}

.login-title{
    margin:0;
    font-size:58px;
    font-weight:700;
    color:#002b84;
    line-height:1.1;
}

.forgot-subtitle{
    margin:15px 0 25px;
    color:#ff6b00;
    font-size:24px;
    font-weight:600;
    line-height:1.4;
}

.login-text{
    margin:0 0 35px;
    font-size:18px;
    line-height:1.8;
    color:#233768;
}

.login-form{
    width:100%;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:16px;
    font-weight:700;
    color:#002b84;
}

.input-wrapper{
    position:relative;
}

.input-icon{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    width:26px;
    height:auto;
    z-index:2;
    pointer-events:none;
}

.form-group input{
    width:100%;
    height:58px;

    padding-left:58px;
    padding-right:18px;

    border:1px solid #d8dfea;
    border-radius:8px;

    font-size:16px;
    outline:none;
    transition:.2s;
}

.form-group input:focus{
    border-color:#ff6b00;
}

.forgot-password-button{
    width:100%;
    height:60px;

    border:none;
    border-radius:8px;

    background:#ff6b00;
    color:#ffffff;

    font-size:22px;
    font-weight:700;

    cursor:pointer;
    transition:.2s;
}

.forgot-password-button:hover{
    background:#eb6100;
}

.separator{
    position:relative;
    margin:30px 0;
    text-align:center;
}

.separator:before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:42%;
    height:1px;
    background:#d9dfe8;
}

.separator:after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    width:42%;
    height:1px;
    background:#d9dfe8;
}

.separator span{
    background:#ffffff;
    padding:0 15px;
    color:#7b87a5;
    font-weight:700;
    position:relative;
    z-index:2;
}

.back-login-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:80%;
    max-width:420px;

    margin:0 auto 25px auto;

    height:58px;

    border:2px solid #8a96ff;
    border-radius:8px;

    color:#002b84;
    text-decoration:none;
    font-weight:700;

    transition:.2s;
}

.back-login-btn:hover{
    background:#f6f8ff;
}

.security-box{
    background:#f4f6fb;

    border-radius:10px;

    padding:22px;
}

.security-title{
    color:#002b84;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.security-text{
    color:#51607f;
    line-height:1.7;
}

/* ==================================================
   HERO IMAGE
================================================== */

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.forgot-hero-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:45px;
}

.hero-community{
    align-self:flex-end;

    background:#002b84;
    color:#ffffff;

    padding:16px 30px;

    border-radius:50px;

    font-size:24px;
    font-weight:600;
}

/* ==================================================
   VORTEILE
================================================== */

.feature-section{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    background:#ffffff;

    border:1px solid #e7e7e7;
    border-radius:18px;

    overflow:hidden;
}

.feature-card{
    display:flex;
    align-items:center;
    gap:20px;

    padding:30px;
}

.feature-card:not(:last-child){
    border-right:1px solid #e7e7e7;
}

.feature-icon{
    min-width:90px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon img{
    width:80px;
    height:auto;
    display:block;
}

.feature-content h3{
    margin:0 0 8px;

    color:#002b84;
    font-size:28px;
}

.feature-content p{
    margin:0;

    color:#445577;
    font-size:17px;
    line-height:1.7;
}

/* ==================================================
   TABLET
================================================== */

@media(max-width:1200px){

    .login-hero{
        grid-template-columns:1fr;
    }

    .hero-image{
        min-height:500px;
    }

    .feature-section{
        grid-template-columns:1fr;
    }

    .feature-card{
        border-right:none !important;
        border-bottom:1px solid #e7e7e7;
    }

    .feature-card:last-child{
        border-bottom:none;
    }
}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:768px){

    .content-wrapper{
        padding:8px;
    }

    .login-box{
        padding:25px;
        margin:10px;
    }

    .login-title{
        font-size:42px;
    }

    .forgot-subtitle{
        font-size:20px;
    }

    .login-text{
        font-size:16px;
    }

    .hero-image{
        min-height:350px;
    }

    .forgot-hero-overlay{
        padding:20px;
    }

    .hero-community{
        font-size:16px;
        padding:12px 20px;
    }

    .feature-card{
        flex-direction:column;
        text-align:center;
    }

    .feature-content h3{
        font-size:22px;
    }
}