@font-face {
    font-family: 'Salty Feathers DEMO';
    src: url('../assets/fonts/Salty Feathers Demo.otf') format('opentype');
}

:root {
    --White: #fff;
    --Egg-white: #F5F5F5;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* -------------------------- From Submitted -----------------------  */


.FormSubmittedWrapper {
    height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;

}

.FormSubmittedContainer {
    width: 56%;
    padding: 9% 0;
    box-shadow: 0px 2px 16.4px -2px #00000014;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1vw;
}

.FormStatusHeadingWrapper {
    display: flex;
    align-items: center;
    margin-bottom: 24px;

}

.FormStatusHeadingText {
    font-family: Josefin Sans;
    font-size: 2.7em;
    font-weight: 400;
    line-height: 32px;
    margin-right: 2%;
    text-wrap: nowrap;
}

.RightTick{
height: 3em;
width: auto;
}

.FormStatusParaText {
    font-family: Josefin Sans;
    font-size: 1.4em;
    font-weight: 300;
    line-height: 20px;
    text-align: center;
    width: 55%;
    margin-bottom: 60px;
}

.FormStatusCloseButton {
    font-family: Josefin Sans;
    font-size: 1.7em;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    color: #191718;
    padding: 16px 64px; 
    padding: 0.7em 2.8em; 
    border: 1px solid #191718;
    border-radius: 2px;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .FormSubmittedContainer {
        font-size: 1.3vw;
    }
    
}
@media (max-width: 750px) {
    .FormSubmittedContainer {
        width: 70%;
        font-size: 1.5vw;
    }
    
}
@media (max-width: 500px) {
    .FormSubmittedContainer {
        width: 90%;
        font-size: 2vw;
    }
    
}