/* RESET */
*{
box-sizing:border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('../assets/bg2.png') no-repeat center center fixed;
    background-size: cover;
}


/* HEADER */
.top-bar {
    width:100%;
    height:110px;
    justify-content: space-between;
    background:url('../assets/header.png') center no-repeat;
}

.top-bar h2 {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
}

/* CARD */
.card {
    background: white;
    padding: 25px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* FORM INPUT */
input,
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* TEXTAREA */
textarea{
    min-height:100px;
    resize:vertical;
}

/* BUTTON */
button {
    background: #1e3c72;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover{
background:#16325f;
}

/* STATUS */
.status-disetujui {
    color: green;
    font-weight: bold;
}

.status-ditolak {
    color: red;
    font-weight: bold;
}

/* RESPONSIVE HP */
@media (max-width:768px){
.top-bar{
    height:80px;
    background:url('../assets/headermb.png') center no-repeat;
    background-size:cover;
}
.container{
width:95%;
padding:20px 10px;
}

.top-bar{
padding:15px;
}

.card{
padding:20px;
}

}