/* RESET & BASE */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfafc;
}

/* NAVBAR 
.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: 26px;
    font-weight: bold;
    color: #ffb6c1;
    font-family: 'Playfair Display', serif;
}


.nav-links a { text-decoration: none; color: #555; margin: 0 15px; font-weight: 500; }*/
/* HERO SECTION */
.sitter-hero {
    background: linear-gradient(135deg, #fff5f6 0%, #ffe4e1 100%);
    padding: 100px 20px 140px; /* Padding bawah lebih besar untuk efek floating */
    text-align: center;
}

.sitter-hero h1 {
    font-size: 42px;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Serif', Georgia, serif;
}

.sitter-hero p {
    color: #777;
    font-size: 19px;
    max-width: 600px;
    margin: 0 auto;
}

/* FORM CONTAINER */
.form-container {
    max-width: 850px;
    margin: -80px auto 80px; /* Form "naik" ke dalam hero section */
    padding: 0 20px;
}

.register-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.register-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

/* INPUT STYLES */
.input-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="file"],
textarea {
    padding: 12px 15px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    transition: 0.3s;
    background: #fdfdfd;
}

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

/* ROW LAYOUT */
.input-row {
    display: flex;
    gap: 25px;
}

.input-row .input-group {
    flex: 1;
}

/* CHECKBOX GROUP */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid #eee;
    cursor: pointer;
    font-weight: 500 !important;
    transition: 0.2s;
}

.checkbox-group label:hover {
    background: #fff0f3;
    border-color: #ffb6c1;
}

.checkbox-group input[type="checkbox"] {
    accent-color: #ffb6c1;
    width: 17px;
    height: 17px;
}

/* PRICE INPUT */
.price-input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.price-input-wrapper span {
    position: absolute;
    left: 15px;
    font-weight: bold;
    color: #888;
}

.price-input-wrapper input {
    padding-left: 45px !important;
    width: 100%;
}

/* BUTTON */
.btn-register {
    width: 100%;
    padding: 18px;
    background-color: #333; /* Tukar ke hitam supaya nampak lebih profesional */
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-register:hover {
    background-color: #ffb6c1; /* Tukar jadi pink bila hover */
    color: #333;
    transform: translateY(-3px);
}