/*
========================================
  AUTHENTICATION PAGES STYLES (LOGIN & REGISTER)
========================================
*/
body {
    font-family: 'Spline Sans', sans-serif; /* Ganti dengan font Anda */
    background-color: #fff;
    color: #1a1a1a;
    margin: 0;
}

/* 1. Layout Utama */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 40px 20px;
    box-sizing: border-box;
}
.auth-form {
    width: 100%;
    max-width: 700px;
}
.form-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* 2. Formulir */
.form-group {
    margin-bottom: 15px;
    position: relative;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="tel"],
.auth-form input[type="password"],
.auth-form input[type="date"] {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #000;
    background-color: #fff;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}
.auth-form input::placeholder { color: #888; }

/* Wrapper untuk ikon di dalam input */
.password-wrapper, .date-input-wrapper {
    position: relative;
}
.eye-icon, .date-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #555;
}

/* Layout 2 kolom untuk Register */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}
.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}
.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}
.checkbox-group label strong {
    text-decoration: underline;
}

/* 3. Tombol & Link */
.form-link {
    display: block;
    font-size: 0.9rem;
    text-decoration: underline;
    color: #000;
    margin-bottom: 30px;
}
.btn-primary {
    width: 100%;
    height: 55px;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
}

.form-footer-text {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
}
.form-footer-text a {
    font-weight: 700;
    text-decoration: underline;
    color: #000;
}

/* Media Query untuk Mobile */
@media (max-width: 600px) {
   .auth-container{
    min-height: 0;
   }
}