body {
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    padding: 15px;
}

.login-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.login-box .bi-shield-lock {
    color: #0d6efd;
    margin-bottom: 1rem;
}

.input-group-text {
    background: transparent;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-primary {
    padding: 0.8rem;
}

.btn-outline-secondary {
    border-color: #ced4da;
}

.btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
    border-color: #ced4da;
}

/* Animasi shake untuk validasi error */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.shake {
    animation: shake 0.5s;
}

/* Signup Link Styling */
.signup-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.signup-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.text-muted {
    font-size: 0.9rem;
} 