* {
    margin: 0;
    padding: 0;
}

.logo {
    margin-top: 30px;
    margin-left: 40px;
}

.logo img {
    height: 100px;
}

.overlay {
    position: relative;
    margin-top: 80px;
}

.overlay h1 {
    font-size: 110px;
    font-weight: bold;
    margin-right: 100px;
    margin-left: 120px;
    text-align: center;
    color: #005322;
    letter-spacing: 24px;
}

.overlay p {
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    margin-top: -18px;
}

.login-container {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    padding: 60px;
}

.login-container h1 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #005322;
}

.card-login {
    border-radius: 10px;
    margin-top: 25px;
    padding: 20px;
}

.login-container .input-box {
    position: relative;
    margin: 15px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
}

.input-box i {
    position: absolute;
    right: 20px;
    top : 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }
  
.login-container .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: 15px 0;
}
  
.remember-forgot label input {
    margin-right: 7px;
}
  
.remember-forgot a {
    text-decoration: none;
}
  
.remember-forgot a:hover {
    text-decoration: underline;
}
  
.login-container .btn {
    width: 100%;
    height: 45px;
    background: #005322;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}
  
.login-container .register-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

@media (max-width: 992px) {
    .logo img {
        display: none;
    }

    .logo {
        background-repeat: no-repeat;
        background-size: contain;
        height: 25vh;
        margin-top: 50px;
        margin-left: 5px;
    }

    .overlay {
        display: none;
    }

    .login-container {
        background-image: none;
        padding: 30px;
        margin-top: -110px;
    }

    .login-container .remember-forgot {
        font-size: 13px;
        margin-top: 20px;
    }
}