@font-face {
    font-family: 'Inter';
    font-weight: 700;
    font-style: normal;
    src: url('./fonts/Inter/Inter-Bold.woff') format('woff'),
    url('./fonts/Inter/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-weight: 500;
    font-style: normal;
    src: url('./fonts/Inter/Inter-Medium.woff') format('woff'),
    url('./fonts/Inter/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-weight: 400;
    font-style: normal;
    src: url('./fonts/Inter/Inter-Regular.woff') format('woff'),
    url('./fonts/Inter/Inter-Regular.woff2') format('woff2');
}

html,body{
    width: 100%;
    height: 100%;
    margin: 0;
}

.form-container{
    height: 100%;
}

.form-wrapper{
    width: 516px;
    padding: 48px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.h1-strong{
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 36px;
}

.h4-strong{
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    font-size: 17px;
    line-height: 28px;
}

.h5-strong{
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 24px;
}

.light-body-l{
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 28px;
}

.text-c300{
    color: #363F4D;
}

.text-c100{
    color: #5C6773;
}

.text-secondary-700{
    color: #3394AB;
}

.input-box{
    width: 100%;
    background: #F7F9FA;
    border: 2px solid #E8E9EB;
    border-radius: 12px;
    padding: 0px 16px;
}

.input-box{
    height: 45px;
}

.input-box:hover{
    background: #FFFFFF;
    border: 2px solid #0065F2;
    box-sizing: border-box;
    border-radius: 12px;
}

.input-box:focus{
    -webkit-box-shadow: 0px 0px 0px 4px #D9ECFF;
    -moz-box-shadow: 0px 0px 0px 4px #D9ECFF;
    box-shadow: 0px 0px 0px 4px #D9ECFF;
    border: 2px solid #0065F2;
    border-radius: 12px;
    background: #fff;
    outline: none;
}


.logo-wrap{
    width: 120px;
    height: 120px;
}

.logo-wrap img{
    width: 100%;
    height: 100%;
}

.body-m{
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
}

.success-msg,.error-msg{
    padding: 14px;
    border-radius: 12px;
}

.success-msg{
    background: #BFFFDA;
    color: #00593C;
}

.error-msg{
    background-color: #BF2926;
    color: #FFFFFF;
}

#message{
    position: absolute;
    top: 15px;
}

#loading-txt{
    display: none;
}

.unsubscribe-mail-wrap,#success-wrapper{
    width: 700px;
    box-shadow: 2px 4px 32px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
}

#success-wrapper{
    display: none;
}

#unsubscribe-btn:disabled{
    cursor: not-allowed;
}