/* Estilo general para el login */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Ancho máximo para que no sea muy grande */
    box-sizing: border-box;
    text-align: center;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #343434;
}

label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    box-sizing: border-box;
    font-size: 16px;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.error {
    color: red;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Hacer que el login sea responsivo */
@media (max-width: 768px) {
    .login-container {
        padding: 20px;
    }

    h2 {
        font-size: 20px;
    }

    input[type="email"],
    input[type="password"] {
        font-size: 14px;
    }

    button[type="submit"] {
        font-size: 14px;
    }
}
.create-account-link {
    margin-top: 20px;
    font-size: 14px;
}

.create-account-link a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.create-account-link a:hover {
    text-decoration: underline;
}

