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

body {
    display: flex;
    height: 100vh;
    background-color: #f0f0f0;
}

.right-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
    padding: 20px;
    height: 100%;
}

.login-container {
    width: 100%;
    max-width: 350px;
    text-align: center;
    color: black;
}

.login-container img {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.login-container p {
    margin-bottom: 15px;
    font-size: 12px;
    color: #777;
}

.login-container input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #333;
    border-radius: 5px;
}

.login-container input:focus {
    border-color: #009184;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #009184;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.login-container button:hover {
    background-color: #00b894;
}

.login-container a {
    color: #007BFF;
    text-decoration: none;
    font-size: 12px;
    margin-top: 15px;
    display: inline-block;
}

.login-container a:hover {
    text-decoration: underline;
}

.login-container button:disabled {
    background-color: #ccc;
    color: #777;
    cursor: not-allowed;
}

/* Responsivo */
@media (max-width: 768px) {
    body {
        flex-direction: column;
        height: 100%;
    }

    .right-section {
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .login-container {
        width: 90%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .login-container img {
        max-width: 150px;
    }
}
