@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Schoolbell&display=swap');

@font-face {
    font-family: 'Stampatello Faceto';
    src: url('../fonts/stampatello-faceto.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Snowy Delight';
    src: url('../fonts/snowy-delight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Super Joyful';
    src: url('../fonts/super_joyful.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.modal-content {
    border-radius: 24px;
}

.modal-body {
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.modal-head {
    font-family: 'Schoolbell', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(255, 67, 170, 1);
    padding-bottom: 24px;
}

.input-label {
    font-family: 'Snowy Delight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: rgba(91, 87, 85, 1);
}

.form-check-label {
    font-family: 'Snowy Delight', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0%;
    color: rgba(91, 87, 85, 1);
}

.form-subheading {
    font-family: 'Snowy Delight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0%;
    color: rgba(255, 67, 170, 1);
}

.error-text {
    color: red;
    font-size: 13px;
    display: block;
    margin-bottom: 20px !important;    
}


.form-input {
    width: 100%;
    height: 52px;
    opacity: 1;
    gap: 10px;
    border-radius: 8px;
    border-width: 1px;
    padding-right: 20px;
    padding-left: 20px;
    border: 1px solid rgba(91, 87, 85, 0.3);
    outline: none;

    font-family: 'Snowy Delight', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0%;
    color: rgba(91, 87, 85, 1);
}

.form-textarea {
    width: 100%;
    height: 118px;
    opacity: 1;
    gap: 10px;
    border-radius: 8px;
    border-width: 1px;
    padding-top: 16px;
    padding-right: 20px;
    padding-left: 20px;
    outline: none;
    border: 1px solid rgba(91, 87, 85, 0.3);

    font-family: 'Snowy Delight', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0%;
    color: rgba(91, 87, 85, 1);
}

.form-button {
    width: auto;
    height: 40px;
    opacity: 1;
    gap: 10px;
    border-radius: 4px;
    border-width: 1px;
    padding-top: 12px;
    padding-right: 20px;
    padding-bottom: 12px;
    padding-left: 20px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 100, 31, 1);

    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;
    line-height: 13px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(255, 100, 31, 1);
}

/* Responsive code Here */
@media (max-width: 992px) {
    .modal-body {
        padding: 32px;
    }
    .modal-content {
        border-radius: 16px;
    }
    .modal-head {
        font-size: 28px;
        line-height: 32px;
        padding-bottom: 16px;
    }
    .form-input,
    .form-textarea,
    .form-button {
        font-size: 16px;
        line-height: 18px;
        padding: 12px 12px;
    }
    .form-textarea {
        height: 80px;
        padding-top: 10px;
    }
    .form-subheading {
        font-size: 16px;
        line-height: 22px;
    }
    .input-label,
    .form-check-label {
        font-size: 13px;
        line-height: 16px;
    }
    .modal-body,
    .modal-content,
    .modal-head,
    .form-input,
    .form-textarea,
    .form-button,
    .form-subheading,
    .input-label,
    .form-check-label {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 768px) {
    .modal-body {
        padding: 32px;
    }
    .modal-content {
        border-radius: 16px;
    }
    .modal-head {
        font-size: 28px;
        line-height: 32px;
        padding-bottom: 16px;
    }
    .form-input,
    .form-textarea,
    .form-button {
        font-size: 16px;
        line-height: 18px;
        padding: 12px 12px;
    }
    .form-textarea {
        height: 80px;
        padding-top: 10px;
    }
    .form-subheading {
        font-size: 16px;
        line-height: 22px;
    }
    .input-label,
    .form-check-label {
        font-size: 13px;
        line-height: 16px;
    }
    .modal-body,
    .modal-content,
    .modal-head,
    .form-input,
    .form-textarea,
    .form-button,
    .form-subheading,
    .input-label,
    .form-check-label {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}