/*body {

    
    background-color: #f4f4f4;
}*/

body {
    background: linear-gradient(135deg, #f3f3f3, #e0e0e0);
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}




input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #218838;
}

.button-modern {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.button-modern:hover {
    background: linear-gradient(135deg, #34d058, #218838);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(40, 167, 69, 0.5);
}

.button-modern:active {
    transform: scale(0.97);
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: calc(100vh - 54px);
    height: 100%;
}

/*.login-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 60%;

}*/

.login-container {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.6s ease;
}

.login-title {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: black;
    /* verde elegante */
}

.login-container input:focus {
    border-color: #43a047;
    box-shadow: 0 0 6px rgba(67, 160, 71, 0.3);
}

.login-container button {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    /*background: linear-gradient(135deg, #66bb6a, #43a047);*/
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(67, 160, 71, 0.4);
    transition: all 0.3s ease;
}

.login-container button:hover {
    /* background: linear-gradient(135deg, #81c784, #2e7d32);*/
    background: linear-gradient(135deg, #34d058, #218838);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(67, 160, 71, 0.5);
}

.login-container button:active {
    transform: scale(0.97);
}

.forgot-link {
    color: #555;
}

.forgot-link:hover {
    color: #43a047;
}


.error-message {
    color: #dc3545;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.content-section {
    background-color: #f3f3f3;
    padding: 50px 0;
    min-height: calc(100vh - 54px);
}

