/* Restablecer algunos estilos básicos para asegurar la consistencia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fondo general de la página */
body {
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

/* Card contenedor */
.card {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

/* Header de la card */
.card-header {
    background-color: #000000;
    color: white;
    padding: 30px 15px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Body de la card */
.card-body {
    background-color: white;
    padding: 40px 30px;
}

/* Título de formulario */
h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

/* Estilos para los labels de los inputs */
.form-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Estilos para los inputs */
.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 15px 20px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Botón de enviar */
.btn-primary {
    background-color: #000000;
    border: none;
    color: white;
    font-size: 16px;
    padding: 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background-color: #333333;
}

/* Efectos de transición para el formulario */
input, button {
    transition: all 0.3s ease;
}

/* Estilo de los enlaces si se necesitan (Ej: olvido contraseña) */
a {
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Estilo para el pie de página o mensaje de registro (si es necesario) */
.text-center {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

.text-center a {
    color: #007bff;
}

.text-center a:hover {
    color: #0056b3;
}
