 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    
    width: 100%;
    margin: 0;
    overflow: hidden;
 }

 .cont {
     background-color: #2e4d2f;
     display: flex;
     box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
    width: 100%;
    height: 100vh;
    
    min-height: 600px;
 }

 .left {
     width: 50%;

 }

 .left img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;

 }

 .right {
     width: 50%;
     display: flex;
     padding: 40px 20px;
     justify-content: center;
     align-items: center;
 }
 .left,
.right {
    width: 50%;
    height: 100vh;
}

 .login-box {
     width: 100%;
     flex-direction: column;
     max-width: 350px;
     display: flex;
 }

 .login-box h1 {
     font-size: 65px;
     margin-top: 10px;
     color: #ffff;
    text-align: center;
     

 }

 .login-box p {
     font-size: 20px;
     margin-bottom: 99px;
     color: #ffff;
     display: flex;
     justify-content: center;

 }

 .input-box {
     display: flex;
     align-items: center;
     border-bottom: 2px solid #ffff;
     margin-bottom: 16px;
     width: 100%;
 }

 .input-box i {
     width: 25px;
     color: #ffff;
     font-size: 15px;
 }

 .input-box input {
     width: 100%;
     padding: 10px 5px;
     border: none;
     outline: none;
     background: none;
     font-size: 14px;
     font-weight: bold;
     cursor: pointer;
     transition: .3s;
     color: #fff;
 }

 .input-box input::placeholder {
     color: #ffff;
 }

 .login-box a {
     display: block;
     text-decoration: none;
     font-size: 15px;
     color: #ffff;
     margin-bottom: 18px;
 }

 button {
     width: 100%;
     padding: 11px;
     border: none;
     border-radius: 25px;
     color: #3f6f5b;
     background: #ffff;
     font-size: 15px;
     font-weight: bold;
     cursor: pointer;
     transition: .3s;
 }

 button:hover {
     background: #cbc9c9;
 }

 .login-box h4 {
     margin: 18px;
     text-align: center;
     font-size: 16px;
     font-weight: normal;
     color: #ffff;
 }

 .login-box h4 span {
     color: #ffff;
     font-weight: bold;
     cursor: pointer;
 }

 .line {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     font-size: 13px;
     color: #ffff;
     margin-bottom: 18px;
 }

 .line span {
     
     height: 1px;
     background: #ffff;
 }

 .social {
     display: flex;
     justify-content: center;
     gap: 43px;
 }

 .social i {
     width: 38px;
     height: 38px;
     background: #fff;
     border-radius: 50%;
     justify-content: center;
     align-items: center;
     display: flex;
     font-size: 16px;
     color: #3f6f5b;
     box-shadow: 0 5px 10px rgb(41, 79, 64, .12);
     cursor: pointer;
     transition: .3s;
 }

 .social i:hover {
     background: #3f6f5b;
     color: #ffff;
     transform: translateY(-3px);
 }


 /* Responsive */

@media (max-width: 992px) {

    .cont {
        width: 90%;
    }

    .left {
        width: 50%;
    }

    .right {
        width: 50%;
        padding: 30px 20px;
    }

    .login-box {
        width: 90%;
    }

    .login-box h1 {
        font-size: 50px;
    }

}


@media (max-width: 600px) {

    .cont {
        width: 100%;
        flex-direction: column;
    }

    .left {
        width: 100%;
        height: 250px;
    }

    .left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .right {
        width: 100%;
        padding: 30px 20px;
    }

    .login-box {
        width: 100%;
        max-width: 350px;
    }

    .login-box h1 {
        font-size: 40px;
    }

    .login-box p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .input-box {
        width: 100%;
    }

    .login-box a {
        font-size: 14px;
    }

    .social {
        gap: 25px;
    }

}