@charset "utf-8";
/* CSS Document */
:root {
    --blue: #0077b6;
    --blue2: #00b4d8;
    --blue3: #03045e;

    --green: #2ecc71;
    --yellow: #f1c40f;
    --purple: #9b59b6;
    --red: #e74c3c;
    --orange: #ff8c42;
    --pink: #ff5da2;

    --bg: #eef3f8;
    --card-bg: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);

    --rounded: 18px;
}

/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    font-family: "Segoe UI", sans-serif;
    color: #333;
}

/* ---------------- HEADER ---------------- */
.header {
    background: linear-gradient(90deg, var(--blue3), var(--blue));
    height: 80px;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header #startButton{
  margin-left: -10px;
}
#startButton .start-content{
  margin-left: 20px;
  margin-top: -11px;
}

.logo{
	float: left;
  margin-left: 20px;
}
.logo #bkpsdmdLogo {
	height: 35px;
}
.roleHeader {
    position: absolute;       /* center element absolute */
    left: 50%;                /* move center horizontally */
    transform: translateX(-50%); /* perfect center */
    text-align: center;
    width: max-content;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

@media screen and (max-width: 800px) {
  .roleHeader {
    display: none;
  }
  .liveClock {
    display: none;
  }
}

.liveClock {
    position: fixed;
    margin: auto;
    right: 10px;
    margin-top: -50px;
    z-index: 100;
}

.container {
  display: flex;
  margin: auto;
  margin: 120px 40px 80px 40px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.363);
  border-radius: 10px;
}

.revise-btn:hover {
  background-color: #c0392b;
}

.leftSide {
    flex: 55%;
    padding: 30px;
    background-image: url(/images/background.jpg);
    background-size: cover;
}
.leftSide h2 {
    font-family: Aptos-Bold;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: left;
    color: #0077b6;
}
.leftSide p {
    font-family: Segoe UI;
    font-size: 17px;
    line-height: 1.6;
    text-align: justify;
}
/* ===============================
   EXPAND DOCUMENT
================================= */

.document-section{
    margin-top:20px;
}

.expand-btn{
    width:100%;
    padding:15px 20px;
    margin-top:15px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:15px;
    font-weight:bold;

    background:linear-gradient(
        135deg,
        #0077b6,
        #0096c7
    );

    color:white;
    transition:.3s;
}

.expand-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.iframe-container{
    max-height:0;
    overflow:hidden;
    transition:max-height .6s ease;
}

.iframe-container.active{
    max-height:1200px;
}

.iframe-container iframe{
  display: block;
  margin: auto;
    width:100%;
    height:500px;
    border:none;
    margin-top:15px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
}

@media screen and (max-width:800px){

    .iframe-container iframe{
        height:500px;
    }

}
.image-preview{
    text-align:center;
    margin-top:20px;
}

.image-preview img{
    max-width:90%;
    width:auto;
    height:auto;
    border-radius:10px;
    cursor:pointer;
    box-shadow:0 4px 15px rgba(0,0,0,0.15);
    transition:.3s;
}

.image-preview img:hover{
    transform:scale(1.02);
}
.document-modal{
    display:none;
    position:fixed;
    z-index:99999;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.92);

    justify-content:center;
    align-items:center;
}

.document-content{
    width:95%;
    height:95%;

    display:flex;
    justify-content:center;
    align-items:center;
}

#modalImage{
    max-width:100%;
    max-height:100%;
    border-radius:10px;
}

#modalPdf{
    width:100%;
    height:100%;
    background:white;
    border-radius:10px;
}

.close-document{
    position:absolute;
    top:15px;
    right:30px;

    color:white;
    font-size:50px;
    cursor:pointer;
    z-index:100000;
}

.rightSide {
    flex: 40%;
    font-family: Segoe UI;
    display: block;
    margin: auto;
    padding: 0px 30px 30px 30px;
}

.form-box {   
	margin: auto;
  display: block;
  width: 90%; 
  background:#fff; 
  padding: 20px; 
  background: transparent;
	border: 1px solid white;
  box-shadow:0 5px 15px rgba(0,0,0,0.1); 
}
.form-box h2 {
    text-align: center;
    font-size: 20px;
}
.form-box input, button { 
    width: 100%; 
    padding:15px; 
    margin-bottom: 20px;
    border:1px solid #ccc; 
}
.form-box button { 
  margin: auto;
  width:50%;
  display: block;
  background:#3498db; 
  border:none; 
  color:white; 
  font-weight:bold; 
  cursor:pointer; 
  transition: 0.3s;
  font-size: 15px;
}
.form-box button:hover { 
  background:#2980b9; 
}

.agreement-box{
    margin:5px 0 20px 0;
    text-align:left;
    font-size:14px;
    line-height:1.5;
}

.agreement-box label{
    display:flex;
    align-items:flex-start;
    gap:10px;
    cursor:pointer;
}

.agreement-box input[type="checkbox"]{
    margin-top:3px;
    width:18px;
    height:18px;
    cursor:pointer;
}

.btn-verifikasi:disabled{
    background:#bfc8d1 !important;
    cursor:not-allowed;
    opacity:0.8;
}

.btn-verifikasi:not(:disabled){
    background:#3498db;
}
.btn-verifikasi {
    width: 50%;
    margin: auto;
    display: block;
    background: #3498db;
    color: white;
    border-radius: 8px;
}
.revise-section {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
}
.revise-btn {
  background-color: #e74c3c;
  color: white;
  padding: 15px 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .container {
    flex-direction: column;
    margin: 80px auto;
  }
  .leftSide, .rightSide {
    flex: 100%;
  }
  .rightSide {
    margin: 20px 5px;
    padding: 0px;
  }
  .form-box{
    margin-top: 20px;
    width: 95%;
    padding: 10px;
  }
}