/* Ajustes generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Arial, sans-serif;
    height: 100%;
}

/* Contenedor principal */
.container {
    display: flex;
    height: 100vh;
}

/* Sección izquierda */
.left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/ICONOS/BG_Clinic.png'); /* Aquí va la ruta de tu imagen */
    background-size: cover; /* Asegura que la imagen cubra toda la sección */
    background-position: center; /* Centra la imagen */
    padding: 200px;
    text-align: center;
    color: #fff; /* Cambia el color del texto para que sea visible sobre la imagen */
}

.left-section h1 {
    font-family: SF UI Display;
    font-size: 3em;
    color: #fff;
    text-shadow: #333 0 0 10px;
}

/* Sección derecha */
.right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white; /* Color de fondo de la derecha */
}

.PMAP_Logo {
    width: 150px; /* Ajusta el tamaño de la imagen */
    height: auto; /* Mantiene la proporción de la imagen */
    margin-bottom: 10px; /* Espacio entre la imagen y el título */
}

/* Caja de inicio de sesión */
.login-box {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el contenido horizontalmente */
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.login-box h2 {
    margin-top: 10px; /* Ajusta el espacio superior del título si es necesario */
    font-size: 24px; /* Tamaño del título */
    color: #333; /* Color del texto, puedes cambiarlo */
}

.login-box label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-box button {
    width: 100%;
    padding: 10px;
    background-color: #fc8621; /* Color de fondo del botón */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.login-box button:hover {
    background-color: #c24914; /* Color al pasar el cursor por encima */
}

.forgot-password {
    text-align: center;
    margin: 10px 0;
    font-size: 0.9em;
}

.enter-psic {
    text-align: center;
    margin: 20px 0;
    font-size: 0.9em;
}

.forgot-password a {
    color: #d9534f;
    text-decoration: none;
}

.enter-psic a {
    color: #d9534f;
    text-decoration: none;
}

.register-button {
    background-color: #5bc0de; /* Color del botón de registro */
    margin-top: 10px;
}

.register-button:hover {
    background-color: #31b0d5; /* Color al pasar el cursor por encima */
}

.form-group {
    margin-bottom: 5px;
}

form {
    margin-top: 16px;
}

.form-control {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
