@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap');

:root
{
    --primary-color: rgb(0, 128, 128);
    --secondary-color: rgb(225, 244, 244);

}

body
{
    font-family: "Unbounded";
    width: 100%;
    height: auto;
}
main
{
    background-image: url(../images/bg.png);
    background-size: cover;
    background-color: rgb(242, 249, 249);
    width: 100%;
    min-height: 100vh;
    padding-bottom: 50px;
      
}
* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        .slideTop {
  animation: slideTop 1.5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

        /* Bingkai Luar Kotak Besar */
        .form-outer-box {
            /* background-color: #ffffff;
            border: 2px solid #000000; */
            width: 100%;
            max-width: 650px;
            /* padding: 40px 30px; */
            border-radius: 4px;
        }

        /* Struktur Baris Form */
        .form-row {
            display: flex;
            gap: 8px;
            margin-bottom: 8px;
            align-items: flex-start;
        }

        /* Mengatur proporsi lebar kolom */
        .w-50 { width: 50%; }
        .w-65 { width: 65%; }
        .w-35 { width: 35%; }
        .w-75 { width: 75%; }
        .w-25 { width: 25%; }
        .w-100 { width: 100%; }
        
        /* Grid khusus untuk baris Provinsi s/d Kelurahan (4 kolom) */
        .grid-4-col {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            width: 100%;
            margin-bottom: 15px;
        }

        /* Pengaturan Umum untuk Input Text dan Select Option */
        .form-input, .form-select {
            width: 100%;
            padding: 6px 6px;
            font-size: 16px;
            font-family: inherit;
            color: #000000;
            background-color: #ffffff00;
            border: 2px solid #000000;
            border-radius: 50px; /* Membuat bentuk kapsul lancip di ujung */
            outline: none;
        }

        .form-input::placeholder {
            color: #000000;
            opacity: 1;
        }

        /* Bagian Khusus Jenis Kelamin */
        .gender-container {
            padding: 2px 5px;
        }

        .gender-title {
            font-size: 14px;
            margin-bottom: 6px;
            color: #000000;
        }

        .gender-options {
            display: flex;
            gap: 15px;
        }

        .gender-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            cursor: pointer;
        }

        /* Kustomisasi Radio Button agar bulat hitam tebal */
        .gender-label input[type="radio"] {
            appearance: none;
            width: 16px;
            height: 16px;
            border: 2px solid #000000;
            border-radius: 50%;
            outline: none;
            display: grid;
            place-content: center;
        }

        .gender-label input[type="radio"]::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            transform: scale(0);
            transition: 120ms transform ease-in-out;
            background-color: #000000;
        }

        .gender-label input[type="radio"]:checked::before {
            transform: scale(1);
        }

        /* Desain Khusus Tombol Req. OTP (Merah) */
        .btn-otp-req {
            background-color: #ff0000;
            color: #ffffff;
            font-weight: bold;
            border: 2px solid #000000;
            cursor: pointer;
            text-align: center;
            transition: background-color 0.2s;
        }

        .btn-otp-req:hover {
            background-color: #cc0000;
        }

        /* Centering teks di dalam input OTP agar mirip gambar */
        .input-otp {
            text-align: center;
        }
        


.logo
{
    width: auto;
    justify-content: center; 
    align-items: center;     
    padding: 10px 10px 10px 10px;
}
.mainTxt
{
    width: 90%;
    margin-top: 25px;
}
.mainTxt1
{
    width: 90%;
    /* margin-top: 5px; */
}
.mainTxt .tag
{
    font-size: 17px;
    font-family: "Jost";
    color: rgb(11, 109, 111);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 4px;
      
}
.mainTxt h1
{
    font-size: 50px;
    color: rgb(40, 40, 40);
    font-weight: bold;
}
header {
  padding: 10px 10px 10px 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: auto;
}
.sideImg
{
    margin-top: 25px;
    width: 100%;
}
.sideImg img
{
    width: 80%;
    height: 100%;
    object-fit: cover;
}
.productRating
{
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 79px 0px rgba(0, 0, 0, 0.11);
    width: 100%;
    min-height: 720px;  
    padding: 30px 30px;
}
.ebook
{
    padding: 10px 10px 5px 10px;
}
.ratingHead
{
    font-size: 22px;
    color: rgb(40, 40, 40);
    font-weight: bold;
    margin-bottom: 80px;
}
form
{
    width: 100%;
    height: auto;

}

/* rating bar */
.ratingBar
{
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 50px;
}
.rangeNumber
{
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    height: 30px;
}
.rangeNumber span
{
    font-size: 18px;
    color: rgb(40, 40, 40);
    font-weight: bold;  
    transition: 0.5s;
}
.rangeNumber span.active
{
    color: var(--primary-color);
    font-size: 20px;
    transform: translateY(-3px);
}

.ratingBar input
{
    -webkit-appearance: none;
    width: 100%;
    background-color: var(--secondary-color);
    height: 10px;
    border-radius: 100px;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 0%, var(--secondary-color) 0%, var(--secondary-color) 100%);

}

/* styling range thumb */
.ratingBar input::-webkit-slider-thumb
{
    -webkit-appearance: none;
    border: 5px solid rgb(245, 245, 245);
    height: 24px;
    width: 24px;
    border-radius: 50px;
    background: var(--primary-color);
    cursor: pointer;
}
.ratingBar input::-moz-range-thumb
{
    border: 5px solid rgb(245, 245, 245);
    height: 24px;
    width: 24px;
    border-radius: 50px;
    background: var(--primary-color);
    cursor: pointer;
}
.ratingBar input::-ms-thumb
{
    border: 5px solid rgb(245, 245, 245);
    height: 24px;
    width: 24px;
    border-radius: 50px;
    background: var(--primary-color);
    cursor: pointer;
}
.likeThumb
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.thumbsingle
{
    display: flex;
    align-items: center;
}
.thumbsingle img
{
    margin: 0 6px;
}
.thumbsingle p
{
    font-size: 12px;
    color: rgb(40, 40, 40);
    margin-bottom: 0;
}
  



form textarea
{
    background-color: var(--secondary-color);
    width: 100%;
    height: 200px;
    resize: none;
    border: solid 2px transparent;
    padding: 25px 20px;
    transition: 0.5s;
    margin-bottom: 20px;
}
:focus
{
    outline: none;
    border-color: var(--primary-color);
}
::placeholder
{
    font-size: 13px;
    color: rgb(40, 40, 40);
}
.formHead
{
    font-size: 18px;
    color: rgb(40, 40, 40);
    font-weight: 500;
    margin-bottom: 30px;
}
.line
{
    background-color: rgb(237, 237, 237);
    height: 1px; 
    width: 100%;
    margin: 30px 0;
}

.inputLabel
{
    font-size: 15px;
    color: rgb(41, 41, 41);
    font-weight: 500;
    padding: 10px;
}
.radio
{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.radio-single
{
    display: flex;
    align-items: center;
    margin-right: 50px;
}
.radio-single input
{
    -webkit-appearance: none;
    border: solid 2px rgb(189, 203, 230);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    width: 32px;
    height: 32px;
    position: relative;
    margin-right: 20px;
    cursor: pointer;
}
.radio-single input::before
{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgb(60, 112, 255);
    width: 18px;
    height: 18px;
    display: none;
}
.radio-single input:checked:before
{
    display: block;
}
.submit
{
    border-radius: 10px;
    background-color: var(--primary-color);
    height: 54px;   
    width: 100%;
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: bold;    
    text-transform: capitalize;
    margin-top: 40px;
    border: 0;
    position: relative;
    overflow: hidden;
}
.submit::before, .submit::after
{
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    background-color: rgba(255, 255, 255,0.5);
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 50% 100%, 0% 100%);
    transition: 0.4s;
    z-index: 0;


}
.submit:hover::before,.submit:hover::after
{
    right: -100%;
}
.submit::after
{
    transition-delay: 0.2s;


}