body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: url('../assets/img/bgwbs.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(76, 178, 192, 0.3);
    z-index: -1;
} */

/* header {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    color: white;
    padding: 20px 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    border-bottom: 3px solid #4CB2C0;
    position: relative;
    z-index: 1;
}

header h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

header p {
    font-size: 1em;
    margin-top: 15px;
    font-weight: 400;
} */

.wbs-header {
    background: #12b6c7;
    padding: 20px 40px;
    width: 100%;
    box-sizing: border-box;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-content img {
    height: 55px;   /* sesuaikan sesuai logo */
    object-fit: contain;
}

.title-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-box .icon {
    height: 70px;
}

.title-box .title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.title-box strong {
    font-weight: 800;
}

.white-icon {
    filter: invert(1) brightness(1000%);
}

.container {
    width: 600px;
    margin: 30px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    flex: 1;
    animation: slideIn 1.2s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    display: flex;
    align-items: center;
}

input, select, textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #4CB2C0;
    box-shadow: 0 0 15px rgba(76, 178, 192, 0.4);
    outline: none;
}

button {
    padding: 18px;
    background: linear-gradient(45deg, #4CB2C0, #76D7EA);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(76, 178, 192, 0.4);
}
button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(76, 178, 192, 0.5);
}

.icon {
    margin-right: 10px;
    color: #4CB2C0;
    font-size: 1.2em;
}

/* footer {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(20px);
    border-top: 3px solid #4CB2C0;
    position: relative;
    z-index: 1;
} */

footer {
    text-align: center;
    background: #12b6c7;
    padding: 20px 40px;
    width: 100%;
    box-sizing: border-box;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 1;
    color: #fff;
}

@media (max-width: 768px) {
    header h1 { font-size: 1.3em; }
    header p { font-size: 0.8em; }
    .container { padding: 25px; margin: 20px; width: auto; }
    button { font-size: 1em; }
    footer { font-size: 0.9em;}
}
