/* GENERAL STYLES */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2563eb; /* Warna biru background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* CONTAINER AND CARD */
.fp-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.fp-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    text-align: center;
}

/* LOGO */
.logo-link {
    text-decoration: none;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logo i {
    font-size: 32px;
}

.card-subtitle {
    color: #555;
    margin-bottom: 25px;
    font-size: 15px;
}

/* INPUT GROUP */
.input-group {
    margin-bottom: 25px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.input-group input[type="email"] {
    width: calc(100% - 22px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.input-group input:focus {
    border-color: #2563eb;
    outline: none;
}

/* BUTTON SUBMIT */
.btn-submit {
    width: 100%;
    padding: 12px 20px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a4a9c;
}

/* FOOTER LINK */
.card-footer-link {
    margin-top: 20px;
    font-size: 14px;
}

.card-footer-link a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.card-footer-link a:hover {
    text-decoration: underline;
}

/* MESSAGE BOXES */
.message-box {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.error-msg {
    background-color: #fcebeb;
    color: #c0392b;
    border: 1px solid #e74c3c;
}

.success-msg {
    background-color: #e6f7ed;
    color: #27ae60;
    border: 1px solid #2ecc71;
}