@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Latar belakang biru langit */
.login-bg {
    background-color: #83c6fa; 
}

/* Warna Teks */
.text-dark-custom {
    color: #1e293b; /* Slate dark */
}

.text-secondary-custom {
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
}

/* --- Styling Card --- */
.login-card {
    width: 100%;
    max-width: 420px;
    border-radius: 1.25rem; 
    position: relative;
    background-color: #ffffff;
}

/* Tombol Panah Kembali */
.back-btn {
    position: absolute;
    top: 25px;
    left: 25px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.back-btn:hover {
    opacity: 0.7; 
}

/* --- Styling Form Input --- */
.custom-input {
    background-color: #fcfcfc; 
    border: 1px solid #f1f1f1;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.95rem;
    color: #495057;
    font-weight: 500;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: #1a56db;
    box-shadow: 0 0 0 0.2rem rgba(26, 86, 219, 0.15);
}

.custom-input::placeholder {
    color: #a1a1aa;
    font-weight: 500;
}

/* --- Styling Tombol Utama (Masuk) --- */
.btn-primary-custom {
    background-color: #1a56db; 
    border-color: #1a56db;
    border-radius: 6px;
    color: white;
    transition: all 0.2s;
}

.btn-primary-custom:hover {
    background-color: #1e40af; 
    color: white;
}

/* --- Garis Pemisah (Divider) --- */
.divider-line {
    margin: 0;
    opacity: 0.2;
    border-color: #475569;
}

/* --- Styling Tombol Google --- */
.btn-google {
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    color: #475569;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02); /* Bayangan sangat tipis seperti di gambar */
    transition: all 0.2s;
}

.btn-google:hover {
    background-color: #f8fafc;
}