
/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#000;

    color:#fff;

    font-family:Arial, Helvetica, sans-serif;

}


/* ==========================
   HEADER
========================== */

.header{

    position:sticky;

    top:0;

    z-index:999;

    height:72px;

    background:#000 !important;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 15px;

    border-bottom:1px solid #000 !important;

}


.logo-video{

    height:48px;

    width:auto;

    object-fit:contain;

    display:block;

}


.header-btn{

    width:42px;

    height:42px;

    border:none;

    background:none;

    color:#f7c600;

    font-size:32px;

}


/* ==========================
   CONTENT
========================== */

.register-page{

    max-width:700px;

    margin:auto;

    padding:20px;

}


/* ==========================
   PAGE TITLE
========================== */

.page-title{

    color:#f7c600;

    font-size:34px;

    font-weight:300;

    margin-bottom:30px;

}


/* ==========================
   SECTION TITLE
========================== */

.section-title{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;

    margin-top:35px;

}

.section-title span{

    width:6px;

    height:38px;

    background:#f7c600;

}

.section-title h4{

    color:#f7c600;

    font-size:24px;

    font-weight:bold;

}


/* ==========================
   FORM
========================== */

.form-group{

    margin-bottom:28px;

}

.form-group label{

    display:block;

    font-size:20px;

    font-weight:bold;

    margin-bottom:10px;

}

.form-group input,
.form-group select{

    width:100%;

    height:58px;

    background:#000;

    border:2px solid #f7c600;

    color:#fff;

    padding:0 15px;

    font-size:18px;

    outline:none;

    transition:.3s;

}

.form-group input:focus,
.form-group select:focus{

    border-color:#f7c600;

    box-shadow:0 0 10px rgba(247,198,0,.4);

}


/* ==========================
   SMALL TEXT
========================== */

.form-group small{

    display:block;

    margin-top:10px;

    color:#e0e0e0;

    line-height:1.7;

    font-size:16px;

}


/* ==========================
   BUTTON
========================== */

.btn-register{

    width:100%;

    height:60px;

    border:none;

    background:#f7c600;

    color:#000;

    font-size:20px;

    font-weight:bold;

    margin-top:20px;

    border-radius:4px;

    transition:.3s;

}

.btn-register:hover{

    background:#ffd54a;

}


/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .register-page{

        padding:15px;

    }

    .page-title{

        font-size:24px;

    }

    .section-title h4{

        font-size:18px;

    }

    .section-title span{

        height:28px;

    }

    .form-group label{

        font-size:16px;

    }

    .form-group input,
    .form-group select{

        height:50px;

        font-size:16px;

    }

    .form-group small{

        font-size:14px;

    }

    .btn-register{

        height:52px;

        font-size:17px;

    }

}

.info-modal-content {
    background: #181818;
    border: 1px solid #333;
    border-top: 4px solid #f7c600;
    border-radius: 10px;
    color: #fff;
    overflow: hidden;
}

.info-modal-content .modal-body {
    padding: 30px 25px;
}


/* ICON */

.info-modal-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(247, 198, 0, 0.12);

    color: #f7c600;

    font-size: 30px;
}


/* JUDUL */

.info-modal-title {
    margin: 0 0 10px;

    color: #fff;

    font-size: 21px;
    font-weight: 700;
}


/* PESAN */

.info-modal-message {
    margin: 0 auto 25px;

    color: #aaa;

    font-size: 14px;

    line-height: 1.6;

    max-width: 330px;
}


/* TOMBOL */

.info-modal-button {
    width: 100%;
    height: 45px;

    border: none;
    border-radius: 5px;

    background: #f7c600;
    color: #000;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.info-modal-button:hover {
    background: #ffd83d;
}

