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

body{
    background:#f3f5f7;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.container{
    width:100%;
    max-width:1500px;
    min-height:90vh;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    display:flex;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.left-side{
    width:50%;
    background:linear-gradient(
            180deg,
            #f7fffa,
            #edf9f1);
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.logo{
    font-size:42px;
    font-weight:700;
}

.logo i{
    color:#2ecc71;
    margin-right:12px;
}

.logo b{
    color:#2ecc71;
}

.content{
    margin-top:120px;
}

.content h1{
    font-size:72px;
    line-height:1.2;
    color:#111827;
}

.content span{
    color:#2ecc71;
}

.content p{
    margin-top:30px;
    font-size:26px;
    line-height:40px;
    color:#64748b;
}

.road{
    height:200px;
    border-radius:200px 200px 0 0;
    background:linear-gradient(
            135deg,
            #2ecc71,
            #8ee4af);
}

.right-side{
    width:50%;
    background:#fafafa;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px;
}

.login-card{
    width:550px;
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.icon-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#2ecc71;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:38px;
}

.login-card h2{
    text-align:center;
    font-size:45px;
    color:#111827;
    margin-top:25px;
}

.subtitle{
    text-align:center;
    color:#64748b;
    font-size:22px;
    margin-top:15px;
    margin-bottom:40px;
}

.input-box{
    height:65px;
    border:1px solid #ddd;
    border-radius:15px;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    padding:0 20px;
}

.input-box i{
    color:#94a3b8;
    font-size:20px;
}

.input-box input{
    flex:1;
    border:none;
    outline:none;
    padding-left:15px;
    font-size:18px;
}

button{
    width:100%;
    height:65px;
    border:none;
    border-radius:15px;
    background:#2ecc71;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    margin-top:10px;
    transition:.3s;
}

button:hover{
    background:#27ae60;
}

button i{
    margin-right:10px;
}

.bottom-text{
    text-align:center;
    margin-top:35px;
    color:#64748b;
}

.bottom-text i{
    color:#2ecc71;
    margin-right:8px;
}

@media(max-width:1000px){

    .container{
        flex-direction:column;
    }

    .left-side,
    .right-side{
        width:100%;
    }

    .content{
        margin-top:60px;
    }

    .content h1{
        font-size:45px;
    }

    .content p{
        font-size:20px;
    }

    .login-card{
        width:100%;
    }
}
