/* lupa_password.css */

body {
    background: linear-gradient(to right, #667eea, #764ba2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

.brand {
    font-size: 1.6rem;
    font-weight: bold;
    color: #4e54c8;
    margin-bottom: 1rem;
}

h2 {
    margin: 0 0 1.5rem;
    color: #333;
}

input[type="text"] {
    width:90%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 0.9rem;
    margin-top: 1rem;
    background: #4e54c8;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #5d5fe6;
}

.error {
    background-color: #ffe0e0;
    color: #b00020;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.success {
    background-color: #e0ffe6;
    color: #007f4f;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.links {
    margin-top: 1.2rem;
}

.links a {
    color: #4e54c8;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}
/* Animasi masuk saat halaman dibuka */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-box {
    animation: fadeInUp 0.8s ease-out;
}
