﻿.appointment-con {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.appointment-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.form-title {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    input[type="date"]:focus,
    select:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    }

.button-submit {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

    .button-submit:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }
/* Estilo para el botón "Confirmar Cita" */
#Guardar {
    background-color: #ca7359; /* Color de fondo naranja */
    color: white;             /* Color de letras blanco */
    border: none;             /* Sin borde */
    padding: 10px 20px;       /* Espaciado interno */
    font-size: 16px;          /* Tamaño de la fuente */
    cursor: pointer;         /* Cursor tipo mano */
    border-radius: 5px;       /* Bordes redondeados */
    transition: background-color 0.3s ease; /* Efecto de transición */
  }
  
  #Guardar:hover {
    background-color: #bb4b26; /* Color más oscuro al pasar el ratón */
  }

.swal-confirm-button, .swal-cancel-button {
    color: white !important; /* Cambia el color del texto a blanco */
}

.obligatorios{
    color:red !important;
}