body {
    font-family: Arial, sans-serif;
}

.header-image-container {
    text-align: center;  /* Centrar horizontalmente */
    padding: 10px 0;     /* Espaciado arriba y abajo */
}

/* Estilos para la imagen */
.header-image-center {
    width: auto;      /* Conservar el ancho original o ajustarlo */
    max-width: 100%;  /* Para asegurarse de que no exceda el ancho del contenedor/formulario */
    height: 50px;     /* Ajustar este valor según el tamaño deseado */
}
.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 20px;
}

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

input {
    width: 95%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.phone-input-wrapper {
    width: 92%;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding-left: 40px; /* Espacio para el código de país*/
}

.phone-input-wrapper input {
    border: none;
    outline: none;
    padding: 8px;
}

.phone-input-wrapper .dial-code {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Asegura que el usuario no pueda seleccionar o interactuar con el código */
}

button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

.hidden {
    display: none;
}
