:root {
    --primary-color: #0d2c56; /* Navy Blue AAL */
    --accent-color: #eab308; /* Gold */
}

body {
    font-family: "Poppins", sans-serif;
    /* Background gradient senada dengan Hero Section Landing Page */
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a8a 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.authentication-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 1.5rem;
}

.card {
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    background-color: #fff;
}

.app-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    text-align: center;
}

.app-brand i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.app-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    margin-bottom: 0;
    line-height: 1.2;
}

.app-brand-sub {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 44, 86, 0.15);
}

.input-group-text {
    border: 2px solid #eee;
    border-left: none;
    background: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #888;
}

.form-control:focus + .input-group-text {
    border-color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #081d3b;
    border-color: #081d3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 44, 86, 0.3);
}

.back-link {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.back-link a:hover {
    color: var(--primary-color);
}

/* Alert Styling */
.alert-danger {
    border-radius: 10px;
    font-size: 0.9rem;
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    color: #991b1b;
}
