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

.container{
    height: 100vh;
    display: flex;
}

.div-logo{
    width: 65%;
    height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-logo img{
    height: 100%;
}

#title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-align: center;
}

.div-form{
    width: 35%;
    background-color: #05682B;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    gap: 40px;
}

.div-inputs-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: gray;
}

.link-login{
    text-decoration: none;
    color: #d3d3d3;
    font-size: 16px;
    text-align: center;
}

.link-login:hover{
    text-decoration: underline;
}

.form-group{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group > input{
    padding: 14px 16px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.form-group > label{
    letter-spacing: 1px;
}

.form-group > input:hover{
    border-color: transparent;
}

.form-group > input:focus{
    outline: none;
}

#forgot-password{
    margin-top: 5px;
    color: #d3d3d3;
    text-decoration: none;
}

#forgot-password:hover{
    text-decoration: underline;
}

.btn-form{
    background-color: #00B050;
    color: white;
    font-weight: bold;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-form:hover{
    background-color: #009944;
    transition: .25s;
    transform: scale(0.98);
    transform: translateY(-1px);
}

.div-text{
    color: white;
    text-align: center;
}

.btn-form:disabled {
    background-color: #a5d6a7;
    color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.7
}

@media (max-width: 1000px) {
    .div-logo{
        width: 50%;
    }

    .div-logo img{
        width: 80%;
        height: auto;
    }

    .div-form{
        width: 50%;
    }
}

@media (max-width: 480px){
    body{
        background-color: white;
    }
    .container{
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .div-logo{
        display: none;
    }
    .div-form{
        width: 80%;
        padding: 30px;
        border-radius: 40px;
    }
}
