/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

body {
    background: linear-gradient(135deg, #A8DADC, #C8E6C9);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Kontainer utama */
.forgot-container {
    background-color: #ffffff;
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    animation: fadeIn 0.6s ease;
}

/* Animasi masuk */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Judul */
.forgot-form h1 {
    font-size: 24px;
    color: #1D3557;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Icon kunci */
.forgot-form h1::before {
    content: "🔐";
    font-size: 20px;
}

/* Deskripsi */
.forgot-form p {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

/* Input */
.forgot-form input {
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s;
    background-color: #F1F1F1;
    color: #1D3557;
}

.forgot-form input:focus {
    outline: none;
    border-color: #A8DADC;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(168, 218, 220, 0.4);
}

/* Tombol Verifikasi */
.forgot-form button {
    width: 100%;
    padding: 13px;
    background-color: #1D3557;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.forgot-form button:hover {
    background-color: #16324F;
}

/* Link kembali */
.back-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    color: #1D3557;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: #0D1B2A;
    text-decoration: underline;
}
