*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#fff;
}

/* Logo */

.logo{
    text-align:center;
    margin-top:45px;
    margin-bottom:50px;
}

.logo img{
    width:500px;
    max-width:90%;
}

/* Main Area */

.login-area{
    width:900px;
    max-width:95%;
    margin:0 auto 80px;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:70px;
}

/* Left */

.left{
    width:400px;
}

.left label{
    display:block;
    font-size:15px;
    font-weight:bold;
    color:#333;
    margin-bottom:6px;
}

.left input[type=text],
.left input[type=password]{

    width:100%;
    height:42px;
    border:1px solid #999;
    background:#e8effd;
    border-radius:2px;
    padding:0 12px;
    font-size:18px;
    margin-bottom:18px;

}

.remember{
    display:flex;
    align-items:center;
    margin-bottom:28px;
    font-size:14px;
    color:#333;
}

.remember input{
    margin-right:8px;
}

button{

    width:100%;
    height:42px;
    background:#005239;
    color:#fff;
    border:none;
    border-radius:2px;
    font-size:16px;
    cursor:pointer;

}

button:hover{
    background:#00694d;
}

/* Right */

.right{
    margin-top:30px;
    width:180px;
}

.right a{
    display:block;
    margin-bottom:24px;
    color:#444;
    text-decoration:underline;
    font-size:14px;
}

.right a:hover{
    color:#005239;
}

/* Footer */

footer{

    background:#005239;
    color:#fff;
    padding:28px 0;
    margin-top:50px;

}

.footer-content{

    width:900px;
    max-width:95%;
    margin:auto;
    font-size:13px;
    line-height:1.8;

}

/* Mobile */

@media(max-width:768px){

.login-area{
    flex-direction:column;
    align-items:center;
    gap:30px;
}

.left{
    width:100%;
}

.right{
    width:100%;
    text-align:left;
    margin-top:0;
}

.logo img{
    width:350px;
}

}