@font-face {
    font-family: 'Frogie-Regular';
    src: url('../fonts/Frogie-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}

body {
    font-family: 'Frogie-Regular', Arial, sans-serif;
}


/* Header */
.hero-content h1 {
    font-family: 'Frogie-Regular', Arial, sans-serif;
}

.hero-content .deskripsi {
    font-family: Arial, sans-serif;
}


/* Semua isi form */
.features-wrapper {
    font-family: Arial, sans-serif;
}

.form-control option {
    font-family: Arial, sans-serif;
}

.btn-kirim {
    font-family: Arial, sans-serif;
}

/* HEADER GRADASI */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 100px;
}

/* Layer untuk menutup seluruh bagian atas */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: #fff;
    z-index: 1;
}


/* Layer ellipse untuk membuat lengkungan */
.hero::after {
    content: "";
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    width: 140%;
    height: 500px;

    background: linear-gradient(
        to bottom,
        #b34b66 70%,
        #98b8dc 100%
    );

    border-radius: 50%;

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.breadcrumb > .breadcrumb-item a, .breadcrumb > .breadcrumb-item:before {
    color: #b34b66;
}

.breadcrumb-item.active {
    color: #98b8dc;
}

.breadcrumb > .breadcrumb-item a {
    text-decoration: none;
}

/* =========================
FORM
========================= */

.form-group {
    margin-bottom: 0;
}


/* LABEL */

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #241b1d;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================
INPUT
========================= */

.form-control {
    width: 100%;

    height: 51px;

    padding: 0 15px;

    border: 1px solid #999;

    border-radius: 11px;

    background: #fff;

    font-family: Arial, sans-serif;

    font-size: 14px;

    box-shadow: none;
}


.form-control:focus {
    border-color: #b34b66;

    box-shadow: 0 0 0 2px rgba(179, 75, 102, 0.08);
}


/* =========================
SELECT
========================= */

select.form-control {
    color: #777;

    appearance: none;
    -webkit-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23999999' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 18px center;

    padding-right: 45px;
}


/* =========================
FOTO
========================= */

.upload-box {
    width: 100%;
    height: 92px;

    border: 1px solid #999;

    border-radius: 11px;

    background: #fff;

    display: flex !important;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    margin: 0 !important;

    transition: border-color .2s ease;
}


.upload-box:hover {
    border-color: #b34b66;
}


.upload-box i {
    font-size: 35px;

    color: #999;
}


/* input file asli disembunyikan */
.upload-box input[type="file"] {
    display: none;
}


/* =========================
TEXTAREA
========================= */

textarea.form-control {
    height: 92px;

    padding: 12px 18px;

    resize: none;
}


/* =========================
BUTTON
========================= */

.btn-kirim {
    width: 278px;
    height: 56px;

    margin: 15px auto 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border: none;

    border-radius: 18px;

    background: #df7079;

    color: #fff;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}


.btn-kirim:hover {
    background: #cf626c;

    transform: translateY(-2px);
}


/* DESKTOP */
@media (min-width: 768px) {
    .hero {
        padding-top: 50px;
        padding-bottom: 120px;
    }

    .form-group {
        margin-bottom: 0;
    }

    .btn-kirim {
        margin-top: 15px;
    }
}

/* MOBILE */
@media (max-width: 767.98px) {
    .hero {
        text-align: center;
        padding-top: 0;
        padding-bottom: 60px;
    }

    .features-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    /*
    Bootstrap otomatis membuat
    col-12 menjadi 1 kolom.
    */

    .form-group {
        margin-bottom: 17px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-control {
        height: 51px;
        border-radius: 11px;
    }

    .upload-box {
        height: 92px;
    }

    textarea.form-control {
        height: 92px;
    }

    .btn-kirim {
        width: 278px;
        height: 56px;

        margin-top: 15px;
    }
}