body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #00613C, #870A28);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    color: #00613C;
    margin-bottom: 20px;
}

label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #00613C;
    outline: none;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #870A28;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #00613C;
}

.forgot-password {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #870A28;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.signup-link {
    margin-top: 20px;
    font-size: 14px;
}

.signup-link a {
    color: #00613C;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}


/* Responsividade: ajuste para telas pequenas */
@media (max-width: 480px) {
    .login-container {
        padding: 20px;
    }

    h2 {
        font-size: 20px;
    }

    input[type="text"], input[type="password"] {
        font-size: 14px;
        padding: 8px;
    }

    button {
        font-size: 14px;
        padding: 10px;
    }

    .signup-link, .forgot-password {
        font-size: 13px;
    }
}