*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Segoe UI",Arial,sans-serif;
    background:#eef2f7;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.card{
    width:430px;
    background:#fff;
    border-radius:15px;
    padding:40px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

h1{
    text-align:center;
    color:#0b6b4b;
    margin-bottom:6px;
}

.subtitle{
    text-align:center;
    color:#666;
    margin-bottom:30px;
    font-size:15px;
}

label{
    display:block;
    margin-top:15px;
    margin-bottom:6px;
    font-weight:600;
}

input{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
}

input:focus{
    outline:none;
    border-color:#0b6b4b;
}

button{
    width:100%;
    margin-top:20px;
    background:#0b6b4b;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:12px;
    font-size:16px;
    cursor:pointer;
}

button:hover{
    background:#09523a;
}

.links{
    margin-top:20px;
    text-align:center;
}

.links p{
    margin-top:10px;
}

.links a{
    color:#0b6b4b;
    text-decoration:none;
}

.links a:hover{
    text-decoration:underline;
}

.errorlist{
    list-style:none;
    color:#d60000;
    margin-top:5px;
}

@media(max-width:500px){

    .card{

        width:95%;

        padding:25px;

    }

}
.page{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

}

.auth-container{

    display:flex;

    width:950px;

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.auth-left{
    width:45%;
    background:#0b6b4b;
    color:white;
    padding:50px 40px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.auth-left h1{
    color:white;
    text-align:center;
    margin:15px 0;
    font-size:50px;
}

.auth-left p{

    line-height:1.7;

}

.auth-right{

    width:55%;

    padding:50px;

}
.logo{

    width:80px;

    display:block;

    margin:0 auto 20px auto;

}

.tagline{

    text-align:center;

    margin-top:15px;

    margin-bottom:30px;

    font-size:17px;

    color:white;

}

.features{

    margin-top:40px;

}

.features p{
    margin-bottom:18px;
    font-size:16px;
}

.info-text{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

.button-link{
    display:inline-block;
    padding:12px 30px;
    background:#0b6b4b;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    margin-top:15px;
}

.button-link:hover{
    background:#09573d;
}