@import url('//fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&display=swap');

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

body {
    height: 100vh;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25%;
}

header .header_img_div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

header h2 {
    color: #313131;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}

header p {
    color: #595959;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}

header #reserve_id_text {
    color: #313131;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15%;
    margin-bottom: 12%;
}

.form_div #email_from {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}

.form_div .email_input_div {
    width: 88%;
    display: flex;
    justify-content: left;
    align-items: center;
    border: 1px solid #A9A9A9;
    border-radius: 8px;
    padding: 2px 15px;
    position: relative;
}

.email_input_div .email_input {
    height: 45px;
    width: 73%;
    border: none;
    /* opacity: 0.6; */
    background: #FFF;
    font-size: 14px;
    font-weight: 500;
}

*:focus {
    outline: none;
}

.email_input_div p {
    color: #7C7C7C;
    font-size: 12px;
    font-weight: 500;
    width: 27%;
}

.email_input_div #img_div {
    width: 28%;
    display: flex;
    justify-content: right;
    align-items: center;
}

#email_from #submit {
    height: 52px;
    width: 88%;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    background: rgba(251, 168, 0, 0.50);
    /* box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.50); */
    color: rgba(0, 0, 0, 0.50);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
}

/* #email_from #submit:hover {
    background: #FBA800;
    color: #000;
} */

#my_email_span {
    position: absolute;
    top: 32%;
    left: 15px;
    transition: all .5s;
    z-index: 0;
    font-size: 14px;
    color: #898989;
    font-weight: 500;
}

#my_email_span.outside {
    top: -50%;
    left: 2px;
    z-index: 2;
}

#myn_mail_id {
    background: transparent;
    position: relative;
    z-index: 1;
}

.my_mail_err {
    color: #D62424 !important;
    position: absolute;
    bottom: -18px;
    opacity: 0;
    transition: all .3s;
    left: 7px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.my_mail_err.show {
    opacity: 1;
}

.my_mail_err #my_mail_err_message {
    font-size: 9px !important;
    font-weight: 500 !important;
    width: 100% !important;
    color: #D62424;
}


#user_email_id {
    background: transparent;
    position: relative;
    z-index: 1;
}

#user_email_span {
    position: absolute;
    top: 32%;
    left: 15px;
    transition: all .5s;
    z-index: 0;
    font-size: 14px;
    color: #898989;
    font-weight: 500;
}

#user_email_span.outside {
    top: -50%;
    left: 2px;
    z-index: 2;
}

.user_email_err {
    color: #D62424 !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    position: absolute;
    bottom: -18px;
    opacity: 0;
    transition: all .3s;
    width: 100% !important;
    left: 7px;
}

.user_email_err.show {
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

#overlay_popup_container {
    display: none;
}

#overlay_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.70);
    z-index: 2;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#overlay_popup #info_popup_div {
    width: 259px;
    height: 214px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #FFF;
    padding: 10px;
}

#overlay_popup #close_button_div {
    width: 100%;
    display: flex;
    justify-content: right;
}

#overlay_popup #confirm_button_div {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

#confirm_button_div button {
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    background: #FBA800;
    box-shadow: rgba(0, 0, 0, 0.5) 4px 4px 0px 0px;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 25px;
    font-family: 'Montserrat', sans-serif;
}

#overlay_popup #info_icon_div {
    width: 100%;
    display: flex;
    justify-content: center;
}

#overlay_popup p {
    color: #444;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 32px;
}

#overlay_popup #popup_mail {
    color: #444;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 5px;
}

#done_header_h2{
    width: 70%;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}
#header_h2{
    width: 100%;
}