
.login-section {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 10%;
    border-radius: 16px;
    max-width: 70%;
    margin: 30px auto 60px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
    backdrop-filter: blur(4px);
}

.login-title {
    text-align: center;
    color: #284701;
    font-size: 28px;
}

.login-description {
    text-align: center;
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

.login-form {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.login-input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fefefe;
    font-size: 16px;
    width: 250px; /* largura fixa no desktop */
}

.login-button {
    background: #284701;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.login-button:hover {
    background: #3b6a0a;
}

@media (max-width: 768px) {
    .login-section {
        max-width: 90%;
    }
    .login-form {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .login-input {
        width: 100%; /* ocupa 100% apenas no mobile */
    }

    .login-button {
        width: 100%;
        box-sizing: border-box;
    }
}
