@font-face {
    font-family: dinBold;
    src: url(../font/D-DIN-Bold.otf);
}

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #000000;
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

.fl-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fl-center-column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.fl-align-start {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.justify-bt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.width-1200 {
    width: 1200px;
}

.ml-20 {
    margin-left: 20px;
}

.mr-20 {
    margin-right: 20px;
}

.ml-24 {
    margin-left: 24px;
}

.mr-24 {
    margin-right: 24px;
}

:root {
    --moka--font-color: #100D24;
    --moka--font-12: 12px;
    --moka--font-14: 14px;
    --moka--font-16: 16px;
    --moka--font-18: 18px;
    --moka--font-20: 20px;
    --moka--font-24: 24px;
    --moka--font-40: 40px;
    --moka--font-400: 400;
    --moka--font-500: 500;
    --moka--font-600: 600;
}


.moka-form-wrap {
    height: 676px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFE8E8 100%);
}

.moka-form-content>.form--title {
    font-size: var(--moka--font-40);
    font-weight: var(--moka--font-600);
    margin-top: 100px;
}

.moka-form-content>.form--desc {
    font-size: var(--moka--font-18);
    color: #898989;
    margin: 22px 0 80px;
}
#from-wrapid{
    position: relative;
}

.form--wrap {
    width: 1200px;
    height: 272px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 15px 49px 0px rgba(0, 0, 0, 0.04);
    border-radius: 24px 24px 24px 24px;
    border: 3px solid #FFFFFF;
    position: relative;
}

input,
button {
    background: none;
    border: none;
    box-sizing: border-box;
    flex-grow: 1;
    font-size: 16px;
    color: #100D24;
    outline: none;
    padding: 0 24px;


}

input::placeholder {
    font-size: var(--moka--font-14);
    color: #BCBEC2;

}


.input-item {
    background: #ffffff;
    width: 330px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 51px 51px 51px 51px;
}

.input--item {
    margin: 40px 0 24px 60px;
}

.form--btn {
    width: 204px;
    height: 48px;
    background: linear-gradient(355deg, #FF392B 0%, #FF6A00 100%);
    border-radius: 100px;
    font-weight: var(--moka--font-500);
    font-size: var(--moka--font-14);
    color: #FFFFFF;
    margin-left: 300px;
}

.form--img {
    width: 442px;
    height: 453px;
    position: absolute;
    top: -60px;
    right: 0;
}

.toast-wrap {
    width: 133px;
    height: 46px;
    font-weight: 600;
    font-size: 16px;
    color: #67C23A;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 50%;
    top: 64px;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: all 0.16s ease-in;
    opacity: 0;

}
.toast-wrap-ani {
    opacity: 1;
    top: 96px;

}
.toast-wrap img{
    width: 14px;
    height: 14px;
    margin-right: 4px;
}