@charset "UTF-8";

:root {
    --brand-color-darkyellow: #F4BC06;
    --brand-color-lightyellow: #F4D106;
    --brand-color-cornsilk:#fcf0b3;
    --brand-color-black:#101010;
    --brand-color-gray:#919191;

    --brand-font : Raleway;

    --font-size-base: 49px;
    --font-size-paragraph: 31px;
}
body{
    font-family: var(--brand-font) !important;
    overflow: hidden;
}
h1{
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--brand-color-black);
}
p{
    font-size: var(--font-size-paragraph);
    color: var(--brand-color-black);
}
.main-bodysection {
    background: url("../../assets/img/bg-main.png");
    background-size: cover;
    height: 93vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}
.rightimg-box  {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
.miancontain-box {
    text-align: center;
    z-index: 1;
}
.main-formbox {
    padding: 32px;
    background: var(--brand-color-cornsilk);
    border-radius: 16px;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--brand-color-lightyellow);
}
.main-alertbox {
    width: 35%;
    margin: 0 auto;
}
.input-box{
    background: #fff !important;
    border-radius: 8px;
    border: 1px solid #E1E4E6;
    padding: 7px;
}
.input-box img {
    width: 20px;
}
.input-box input {
    border: 0;
    padding: 0;
    vertical-align: middle;
    line-height: normal;
}
input:focus-visible {
    outline: 0;
    outline-offset: 0px !important;
}
button.btnjoin-test {
  width: 100%;
    border: 0;
    padding: 7px 25px;
    background: linear-gradient(to right, var(--brand-color-lightyellow) 0%, var(--brand-color-darkyellow) 51%, var(--brand-color-lightyellow) 100%);
    font-size: 18px;
    border-radius: 8px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    box-shadow: 0 0 20px #eee;
    font-weight: 600;
}
.main-formfilde {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.formfilde {
    width: 250px;
}
 /* ----FOOTER--- */
 .footer-section{
    background: var(--brand-color-black);
    padding: 20px 0;
 }
.main-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-footer p, .footer-social span {
    color: var(--brand-color-gray);
}
.main-footer p {
    font-size: 16px;
    margin: 0;
}
.footer-social span {
    font-weight: 600;
    font-size: 14px;
}
.footer-social a {
    text-decoration: auto;
    margin: 0 5px;
}
@media only screen and (min-device-width: 319px) and (max-device-width: 991px) {
    .main-formfilde {
        flex-direction: column;
        gap: 15px;
    }
    .miancontain-box {
        padding: 20px;
    }
    .main-formbox {
        width: 85%;
        margin-top: 35px;
        padding: 32px 13px;
    }
    .formfilde {
        width: 100%;
    }
    h1{
        font-size: 25px;
    }
    p{
        font-size: 16px;
    }
    .rightimg-box img {
        height: 190px;
        width: 190px;
    }
    .main-bodysection {
        background-position: bottom;
    }
    .input-box{
        display: flex;
        justify-content: flex-start;
        gap: 5px;
        padding: 12px;
    }
}


