/* Estilos globales */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;  /* Fondo gris claro para un toque suave */
    color: #333;  /* Texto gris oscuro */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Estilos para el formulario */
form {
    background-color: white;
    border: 1px solid #ddd;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #000; /* Título negro */
    margin-bottom: 30px;
    font-weight: normal;
}

label {
    font-size: 14px;
    color: #000; /* Etiquetas en negro */
    display: block;
    margin-bottom: 5px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 16px;
    color: #333;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #000; /* Borde negro al enfocar */
    outline: none;
    background-color: #fff;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #000; /* Botón negro */
    color: #fff; /* Texto blanco */
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #333; /* Cambiar tono de negro al pasar el mouse */
}

/* Adaptación para pantallas móviles */
@media (max-width: 600px) {
    form {
        padding: 20px;
    }
}
/* Estilos globales */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Estilos para el formulario */
form {
    background-color: white;
    border: 1px solid #ddd;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


label {
    font-size: 14px;
    color: #000;
    display: block;
    margin-bottom: 5px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 16px;
    color: #333;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #000;
    outline: none;
    background-color: #fff;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #333;
}

/* Estilos para los botones de "Crear Usuario" y "Volver al Inicio" */
.extra-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px;
    background-color: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    width: 48%;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #333;
}
