/* Reset umum */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: url('/simbada/assets/img/image_5.jpg') no-repeat center center fixed;
    background-size: cover;       /* ukuran latar belakang: sampul */
    display: flex;                /* tampilan: fleksibel */
    justify-content: center;      /* justify-content: tengah */
    align-items: center;          /* menyelaraskan-item: tengah */
    min-height: 100vh;            /* tinggi minimum: 100vh */
    color: #333;                  /* warna teks */
}

/* Container utama */
.forgot-container {
    width: 100%;
    max-width: 350px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-align: center;
}

/* Header */
.forgot-header img {
    width: 80px;
    margin-bottom: 10px;
}

.forgot-header h1 {
    margin: 10px 0 5px;
    font-size: 22px;
    color: #198754;
}

.forgot-header p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Form */
.forgot-form .form-group {
    text-align: left;
    margin-bottom: 1.2rem;
}

.forgot-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.forgot-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border 0.3s ease;
}

.forgot-form input:focus {
    border-color: #4facfe;
    outline: none;
}

/* Tombol */
.btn-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #198754, #00b894); /* hijau ke toska */
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #157347, #00996e); /* lebih gelap saat hover */
    transform: scale(1.03);
}


/* Link bawah */
.forgot-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.forgot-links a {
    color: #198754;
    text-decoration: none;
    font-weight: 500;
}

.forgot-links a:hover {
    text-decoration: underline;
}
