/* IMPORT FONT */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfafc; /* Pink putih lembut */
    color: #333;
    line-height: 1.6;
}

/* NAVBAR (Kekalkan konsistensi) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffb6c1;
    font-family: 'Playfair Display', serif;
}

/* FORM CONTAINER */
.form-container {
    max-width: 700px; /* Kecilkan sikit supaya nampak eksklusif */
    margin: 60px auto;
    padding: 0 20px;
}

.register-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid #f9f9f9;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #222;
    text-align: center;
}

p {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 14px;
}

/* INPUT GROUPS */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #555;
    text-transform: uppercase;
}

input[type="text"],
input[type="number"],
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid #eee;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background-color: #fcfcfc;
    transition: 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #ffb6c1;
    background-color: white;
    box-shadow: 0 10px 20px rgba(255, 182, 193, 0.1);
}

/* FILE UPLOAD BOX */
.file-upload-wrapper {
    border: 2px dashed #ffb6c1 !important; /* Warna pink tema */
    background-color: #fff9fa;
    padding: 30px !important;
    transition: 0.3s;
}

.file-upload-wrapper:hover {
    background-color: #fff0f3;
}

input[type="file"] {
    font-size: 14px;
    color: #777;
}

/* BUTTON TAMBAH */
.btn-register {
    width: 100%;
    padding: 18px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-register:hover {
    background-color: #ffb6c1;
    color: #333;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 182, 193, 0.3);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .register-card { padding: 30px 20px; }
    .navbar { padding: 15px 20px; }
}