@font-face {
    font-family: 'Outfit';
    src: url('assets/outift.ttf');
}

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

.body {
    background-color: white;
    font-family: 'Outfit', sans-serif;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.btn-submit:focus {
    outline: none !important;
    box-shadow: none !important; /* This is added to remove the Bootstrap focus shadow */
}

.page-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer {
    text-align: center;
    padding: 10px 0;
}

.bottom-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    max-width: 240px;
    position: fixed;
    bottom: 1%;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
}


.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 50%;
    padding: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
}

.video-play-button img {
    max-width: 60%;
    max-height: 60%;
}

.form-container {
    height: auto;
    padding: 10px 50px;
    margin: 10px 0;
    border-radius: 15px;
}

.form-container img {
    max-width: 100%;
    height: auto;
    padding-left: 10%;
    padding-right: 10%;
}

.form-control {
    height: 50px !important;
    border-radius: 5px !important;
    margin-bottom: 0 !important;
    color: #495057 !important;
    background-color: #f5f5f5 !important;
}

.btn-submit {
    border-radius: 5px !important;
    height: 80px;
    width: 100%;
    border: none !important;
    font-size: 20px;
    color: white;
    font-family: 'Outfit', sans-serif;
    background-color: #ff4040 !important;
}

.info-text {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center
}

.footer-link {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #895AEA !important;;
}

.error-text {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
    color: red !important;
}

.digits-container input {
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    padding-left: 10px;
}

#emailInputDiv, #confirmationCodeDiv {
    flex-direction: column;
    font-family: 'Outfit', sans-serif;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

#confirmationCodeDiv > h1 {
    text-align: left;
    margin-top: -80px;
    font-size: 20px;
}

#title {
    color: #202020;
}

@media screen and (max-width: 1000px) {

    video {
        border-radius: 20% !important;
        height: 50vh !important;
        width: 100% !important;
    }

    .info-text {
        margin-bottom: 20px;
        margin-top: 20px;
        line-height: 1.2em;
        font-size: 30px !important;
        text-align: center
    }

    .h2 {
        font-size: 50px;
    }

    .form-container {
        max-width: 95%;
        width: 100%;
        padding: 0;
        margin-bottom: 0px;
        font-size: 30px;
    }

    .btn-submit {
        margin-top: 0 !important;
        font-size: 14px !important;
        height: 40px !important;
        font-family: 'Outfit', sans-serif;
        background-color: #FF6161 !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
}
