html,
body {
    font-family: "Times New Roman", Times, serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

.container {
    width: 56.25vh; /* (1080 / 1920) * 100 = 56.25 */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
    padding: 20px;
    max-width: 1080px;
    max-height: 1920px;
}

.header {
    width: 100%;
    height: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    z-index: 2;
    position: absolute;
    top: 23px;
    left: 15px;
    box-sizing: border-box;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left img {
    margin-right: 37px;
}

.header img {
    height: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo-think-big {
    margin-right: 25px;
}

.content {
    position: relative;
    color: white;
    z-index: 1;
}

.content h1 {
    font-family: "Times New Roman", Times, serif;
    font-weight: 700;
    font-style: normal;
    margin-top: 0px;
    font-size: 5.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.content p {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.content button {
    min-width: 500px;
    padding: 5px;
    font-size: 2.2rem;
    background-color: #fff;
    color: #001f87;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-button {
    width: 100% !important;
}
.send-me-the-photo {
    margin-bottom: 30px !important;
}

.background {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 56.25vh; /* (1080 / 1920) * 100 = 56.25 */
    height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    margin-top: 50%;
    border-radius: 10px;
}

.input-field {
    font-size: 2.2rem;
    display: block;
    width: 480px;
    margin: 10px 0;
    padding: 10px;
    color: #001f87;
    border: 1px solid #001f87;
}

.input-send-email {
    display: block;
    width: 480px;
    margin: 2px 0;
    padding: 10px;
    color: #001f87;
    border: 1px solid #001f87;
    font-size: 2.2rem;
}

#photo-smile {
    margin-top: 160px;
    text-align: center;
}

.style-camara {
    width: 100%;
    height: auto;
    border: 2px solid #fff;
}

#photo {
    width: 100%;
    border: 2px solid #1cf187;
    display: none;
}

#photo-msg {
    margin-top: 50px !important;
}

#smile-text {
    margin-top: 30px !important;
}

#welcome {
    cursor: pointer;
}

#container-ai-processing {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra verticalmente */
    align-items: center; /* Centra horizontalmente */
    width: 56.25vh; /* (1080 / 1920) * 100 = 56.25 */
    height: 100vh; /* Asegura que ocupe toda la altura de la ventana */
    text-align: center; /* Asegura que el texto esté centrado dentro del div */
    background-color: #002776; /* O el color de fondo que necesites */
    position: relative;
    max-width: 1080px;
    max-height: 1920px;
}

#lets-go-instructions {
    cursor: pointer;
}

#thought-big {
    margin-top: 146px;
    text-align: center;
}

#thought-big .title {
    margin-left: 80px;
}

#thought-big .the-result {
    margin-top: 0px;
}
#thought-big .photo-the-result {
    width: 65%;
    border: 2px solid #fff;
}

#thought-big-finish {
    font-family: "Arial", Helvetica, sans-serif;
    font-weight: 100;
    line-height: 1.3rem;
    margin-bottom: 50px;
    text-align: center;
}

#statusMessage {
    display: none;
    background: #34c759;
    color: #fff;
    padding: 10px;
    min-width: 600px;
    width: auto;
    font-size: 2.2rem;
}
.statusMessage-error {
    background-color: #da1c26 !important;
}

#emailError {
    display: none;
    background-color: #da1c26;
    color: #fff;
    min-width: 75%;
    padding: 7px;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

@media (max-height: 800px) {
    #thought-big .photo-the-result {
        width: 60%; /* Ajusta el ancho para pantallas más pequeñas */
        max-height: 50vh; /* Ajusta la altura para evitar cortes */
    }
}

#spinner-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.count-down {
    position: absolute;
    top: 54%;
    left: 56%;
    transform: translate(-50%, -50%);
    font-size: 5.5rem;
    font-weight: 700;
    color: white;
    font-family: "Times New Roman", Times, serif;
    z-index: 10;
    text-align: center;
    width: fit-content;
    height: fit-content;
}

#spinner-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 8px solid rgba(255, 255, 255, 0.2); /* Borde opaco */
    border-top-color: white;
    border-radius: 50%;
    animation: spin 2s linear infinite; /* Animación del spinner */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.progress-bar {
    width: 70%;
    height: 30px;
    border: 3px solid white;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 auto;
}

.progress {
    height: 100%;
    background-color: white;
    width: 50%; /* Ajusta el ancho de la barra de carga */
    transform: skewX(-25deg); /* Simula la forma inclinada */
    animation: move 2s linear infinite; /* Animación infinita */
}

@keyframes move {
    0% {
        transform: translateX(-100%) skewX(-25deg); /* Parte desde fuera del contenedor */
    }
    100% {
        transform: translateX(100%) skewX(-25deg); /* Termina fuera del contenedor por el otro lado */
    }
}

.container-msg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px;
    width: 100%;
    margin: 0 auto;
}

.text {
    font-size: 2.2rem;
    text-align: left;
    padding-right: 9px;
}

.icon img {
    width: 48px;
    height: 48px;
}

.fa-regular {
    font-size: 1.5rem;
}
