/* Mengatur font default dan background halaman */
body {
    background-color: #D3D3CE; /* Warna abu-abu hangat sesuai gambar */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
}

/* Container utama untuk centering kartu login */
.login-container {
    min-height: 100vh;
    width: 100%;
}

/* Desain kartu utama putih */
.login-card {
    background-color: #ffffff;
    border-radius: 32px !important; /* Membuat sudut membulat lebar */
    max-width: 960px;
    width: 100%;
    min-height: 600px;
}

/* Pembungkus gambar agar tingginya pas */
.image-wrapper {
    overflow: hidden;
    height: 100%;
}

/* Custom Input Field */
.custom-input {
    border: 1px solid #E2E8F0;
    border-radius: 30px !important;
    font-size: 0.95rem;
    padding-left: 1.25rem;
    color: #333;
}

.custom-input::placeholder {
    color: #A0AEC0;
}

.custom-input:focus {
    border-color: #633BB3;
    box-shadow: 0 0 0 0.2rem rgba(99, 59, 179, 0.15);
}

/* Warna ungu kustom untuk tombol Login */
.btn-purple {
    background-color: #633BB3;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-purple:hover {
    background-color: #4E2E8E;
    color: #ffffff;
}

/* Tombol Sosial (Google & Apple) */
.btn-light-social {
    background-color: #F1F3F5;
    color: #1A202C;
    border-radius: 14px;
    transition: background-color 0.2s ease;
}

.btn-light-social:hover {
    background-color: #E2E8F0;
}

/* Garis pembatas (Divider) */
.divider-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #E2E8F0;
    z-index: 0;
}

/* Custom Checkbox */
.custom-checkbox:checked {
    background-color: #633BB3;
    border-color: #633BB3;
}

/* Link warna ungu */
.forgot-link {
    color: #633BB3;
}

.forgot-link:hover {
    text-decoration: underline !important;
}

.create-account-link {
    color: #4A5568;
}

.create-account-link:hover {
    color: #633BB3;
}
