body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.form-container {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="email"],
input[type="password"] {
    width: calc(100% - 20px); /* Restar padding del contenedor */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555555;
    border-radius: 5px;
    background-color: #2e2e2e;
    color: #ffffff;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #ee0047;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-sizing: border-box;
}

button:hover {
    background-color: #92002c;
}

.password-reset-link {
    text-align: center;
    margin-top: 10px;
}

.password-reset-link a {
    color: #007BFF;
    text-decoration: none;
}

.password-reset-link a:hover {
    text-decoration: underline;
}

.message {
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
}

.sidebar-info {
    text-align: center;
    margin-top: 20px;
    color: #bbbbbb;
}

/* Estilos adaptables a móviles */
@media (max-width: 600px) {
    .form-container {
        padding: 15px;
        box-shadow: none;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    input[type="email"],
    input[type="password"] {
        padding: 8px;
        margin-bottom: 10px;
    }

    button {
        padding: 8px;
        font-size: 14px;
    }

    .password-reset-link {
        margin-top: 8px;
    }

    .sidebar-info {
        margin-top: 15px;
    }
}
