﻿
.section {
    position: relative;
    height: 100vh;
}

    .section .section-center {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

#booking {
    font-family: 'Montserrat', sans-serif;
    /*background-image: url('../img/background.jpg');*/
    /*background-image: url('../img/Akadeet Background Image (1).svg');*/
    /*background-image: url('../img/7.jpg');*/
    /*background-image: url('../img/images (6).jpg');*/
    background-size: cover;
    background-position: center;
    /*background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);*/
    /*background-image: linear-gradient(to top, #37ecba 0%, #72afd3 100%);*/
}

    #booking::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;       
    }

.booking-form {
    /*max-width: 642px;*/
    width: 100%;
    margin: auto;
}

    .booking-form .form-header {
        text-align: center;
        margin-bottom: 25px;
    }

        .booking-form .form-header h1 {
            font-size: 58px;
            text-transform: uppercase;
            font-weight: 700;
            color: #ffc001;
            margin: 0px;
        }

    .booking-form > form {
        background-color: white;
        padding: 30px 20px;
        border-radius: 3px;
        opacity: 1.0;
        background: #f8f9fa;
        border-bottom-left-radius: 6% 50%;
    }

    .booking-form .form-group {
        position: relative;
        margin-bottom: 15px;
    }

    .booking-form .form-control {
        background-color: white;
       /* border: none;*/
        height: 38px;
        border-radius: 3px;
        -webkit-box-shadow: none;
        box-shadow: none;
        font-weight: 400;
        color: #101113;
    }

        .booking-form .form-control::-webkit-input-placeholder {
            color: rgba(16, 17, 19, 0.3);
        }

        .booking-form .form-control:-ms-input-placeholder {
            color: rgba(16, 17, 19, 0.3);
        }

        .booking-form .form-control::placeholder {
            color: rgba(16, 17, 19, 0.3);
        }

    .booking-form input[type="date"].form-control:invalid {
        color: rgba(16, 17, 19, 0.3);
    }

    .booking-form select.form-control {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        .booking-form select.form-control + .select-arrow {
            position: absolute;
            right: 0px;
            bottom: 6px;
            width: 32px;
            line-height: 32px;
            height: 32px;
            text-align: center;
            pointer-events: none;
            color: #101113;
            font-size: 14px;
        }

            .booking-form select.form-control + .select-arrow:after {
                content: '\279C';
                display: block;
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
            }

    .booking-form .form-label {
        color: #4b3737eb;
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 5px;
        display: block;
        text-transform: uppercase;
    }

    .booking-form .submit-btn {
        color: #101113;
        background-color: #ffc001;
        font-weight: 700;
        height: 50px;
        border: none;
        width: 100%;
        display: block;
        border-radius: 3px;
        text-transform: uppercase;
    }

.indicator {
    position: absolute;
    top: 168px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-indicator {
    background-color: #ffe6e6; /* light red background */
    border: 2px solid #ff0000; /* red border */
}

.success-indicator {
    background-color: #4CAF50; /* Green */
}

.cross {
   /* position: relative;*/
    width: 40px;
    height: 40px;
}

.checkmark {
    width: 250px;
    height: 70px;
    border-left: 25px solid green;
    border-bottom: 25px solid green;
    transform: rotate(-45deg);
    position:absolute;
    top:90px;
}

#status-message {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 12px;
    font-size: 16px;
    color: #333;
    border-top: 1px solid #ccc;
    z-index: 20;
    right:0px;
}

.success-text {
    color: green;
}

.error-text {
    color: red;
}

    .cross::before,
    .cross::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 17px;
        height: 100%;
        background-color: red; 
        transform-origin: center;
    }

    .cross::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .cross::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

/*@media (max-width: 768px) {
    .indicator {
        width: 300px;
        height: 300px;
    }

    .checkmark {
        width: 80px;
        height: 80px;
    }

    .cross {
        width: 30px;
        height: 30px;
    }
}*/
