/* ===================================
   GOOGLE FONT
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

    font-family:'Poppins',sans-serif;

}

/* ===================================
   BODY
=================================== */

body{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #0A2342,
        #102E52,
        #061329
    );

    padding:40px;

}

/* ===================================
   CONTAINER
=================================== */

.container{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* ===================================
   REGISTER BOX
=================================== */

.register-box{

    width:100%;

    max-width:520px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:28px;

    padding:40px;

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

/* ===================================
   LOGO
=================================== */

.logo{

    text-align:center;

    margin-bottom:30px;

}

.logo img {
    width: 90px;
    height: auto;
    margin-bottom: 18px;
}

.logo h2{

    color:#ffffff;

    font-size:28px;

    font-weight:700;

    letter-spacing:1px;

}

.logo p{

    margin-top:8px;

    color:#D4AF37;

    font-size:15px;

}

/* ===================================
   FORM
=================================== */

form{

    width:100%;

}

.input-group{

    display:flex;

    flex-direction:column;

    margin-bottom:20px;

}

.input-group label{

    color:#ffffff;

    font-size:14px;

    font-weight:500;

    margin-bottom:8px;

}

.input-group input,

.input-group select{

    width:100%;

    padding:14px 16px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.08);

    color:#ffffff;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.input-group input::placeholder{

    color:rgba(255,255,255,.55);

}

.input-group select{

    cursor:pointer;

}

.input-group select option{

    color:#222;

    background:#ffffff;

}

.input-group input:focus,

.input-group select:focus{

    border-color:#D4AF37;

    box-shadow:0 0 0 3px rgba(212,175,55,.20);

}

/* ===================================
   BUTTON
=================================== */

.btn-daftar{

    width:100%;

    margin-top:10px;

    padding:15px;

    border:none;

    border-radius:15px;

    background:#D4AF37;

    color:#0A2342;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.btn-daftar i{

    margin-right:8px;

}

.btn-daftar:hover{

    background:#f0c94d;

    transform:translateY(-2px);

    box-shadow:0 10px 20px rgba(212,175,55,.30);

}

/* ===================================
   LOGIN LINK
=================================== */

.login-link{

    margin-top:25px;

    text-align:center;

    color:#ffffff;

    font-size:14px;

}

.login-link a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.login-link a:hover{

    color:#f0c94d;

    text-decoration:underline;

}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:768px){

    body{

        padding:20px;

    }

    .register-box{

        padding:30px 25px;

    }

    .logo img{

        width:70px;

    }

    .logo h2{

        font-size:24px;

    }

    .logo p{

        font-size:14px;

    }

    .input-group input,

    .input-group select{

        padding:13px 15px;

        font-size:14px;

    }

    .btn-daftar{

        padding:14px;

        font-size:15px;

    }

}

@media(max-width:480px){

    .register-box{

        padding:25px 20px;

        border-radius:22px;

    }

    .logo img{

        width:60px;

    }

    .logo h2{

        font-size:22px;

    }

}