body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #2b2b2b;
    background: linear-gradient(135deg, #2b2b2b, #3a3a3a);
}

#loginForm {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
}

#loginForm label {
    font-weight: bold;
    color: #464646;
    display: block;
    margin-bottom: 5px;
}

#loginForm input[type="text"],
#loginForm input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

#loginForm input[type="submit"] {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    color: #fff;
    background-color: #464646;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#loginForm input[type="submit"]:hover {
    background-color: #5a5a5a;
}

img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Estilos adicionales para mejorar la estética */
#loginForm input[type="text"]:focus,
#loginForm input[type="password"]:focus {
    border-color: #464646;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    outline: none;
}

#loginForm input[type="submit"]:focus {
    outline: none;
}

#loginForm .mb-3 {
    margin-bottom: 1.5rem;
}

#loginForm .d-grid {
    display: grid;
    gap: 0.5rem;
}

#loginForm .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

#loginForm .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

#loginForm .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

#loginForm .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
}

#loginForm .modal-header {
    background-color: #464646;
    color: #fff;
}

#loginForm .modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

#loginForm .modal-body {
    padding: 20px;
}

#loginForm .modal-title img {
    width: 100px;
    border-radius: 50%;
}

#loginForm .g-recaptcha {
    margin-bottom: 20px;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.form-header .back-link {
    position: absolute;
    left: -10%;
    top: -2%;
    transform: translateY(-50%);
    color: #464646;
    text-decoration: none;
    font-size: 24px;
}

.form-header .back-link:hover {
    color: #5a5a5a;
}

.form-control[readonly] {
    background-color: #f9f9f9; /* Color de fondo para campos de solo lectura */
    cursor: default; /* Cursor por defecto */
    pointer-events: none; /* Deshabilita eventos del puntero */
}