/* CSS untuk Halaman Login dengan Tampilan Cerah dan Bersemangat */

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fad0c4);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-container {
    background: #ffffffcc;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #e74c3c;
}

.login-container label {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    text-align: left;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 2px solid #f0a5a5;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
}

.login-container button {
    background-color: #f76c6c;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.login-container button:hover {
    background-color: #ff3b3b;
}

.quote {
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: #333;
    margin-top: 30px;
    text-align: center;
    line-height: 1.5;
}

.quote:before {
    content: "“";
    font-size: 24px;
    color: #f76c6c;
}

.quote:after {
    content: "”";
    font-size: 24px;
    color: #f76c6c;
}

.author {
    display: block;
    text-align: center;
    font-style: italic;
    font-size: 14px;
    margin-top: 5px;
    color: #666;
}
