/* 🔹 Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* 🔹 Contenedor principal */
.container {
    max-width: 500px;
    margin: 80px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 🔹 Título */
h2 {
    color: #4CAF50;
    margin-bottom: 20px;
}

/* 🔹 Formularios */
.form-group {
    text-align: left;
    margin-bottom: 15px;
}

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

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* 🔹 Botón de registro */
.btn-register {
    background: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
}

.btn-register:hover {
    background: #45a049;
}

/* 🔹 Alertas de error */
.alert {
    background: #ffdddd;
    color: #d8000c;
    padding: 10px;
    border-left: 5px solid #d8000c;
    border-radius: 5px;
    margin-bottom: 15px;
}

.btn-login {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px !important;
    border: none;
    font-size: 16px !important;
    font-weight: bold !important;
    border-radius: 5px !important;
    cursor: pointer;
    text-decoration: none;
    width: 154px !important;  /* Tamaño fijo */
    height: 48px !important;  /* Ajuste de altura */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-login:hover {
    background-color: #45a049 !important;
}

.btn-login:active {
    transform: scale(0.98);
}

