/* Estilos para el popup */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 0;
}

#container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#birthdate {
    width: 30%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

#verify-button,
#exit-button {
    background-color: #dea332 !important;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

#verify-button:hover,
#exit-button:hover {
    background-color: #c28e2e;
}


.popup {
    display: none;
    position: fixed;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background-color: rgba(146, 145, 145, 0.9);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}
h2{
    color: rgb(255, 255, 255);
    font-weight: 500;
}

p{
    color: black;
    padding-bottom: 20px;
}

/* Estilos adicionales para tu sitio web principal */
/* Asegúrate de que estos estilos coincidan con la estética de tu sitio */