
 
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Roboto', sans-serif;
    }

    body {
        background: #f4f6f9;
    }

    .header {
        background: #002147;
        color: white;
        padding: 15px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header h1 {
        font-size: 18px;
        font-weight: 500;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        height: 40px;
    }

    .container {
        max-width: 900px;
        margin: 40px auto;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    .section-header {
        background: #e9eef5;
        padding: 15px 20px;
        font-weight: 500;
        border-bottom: 1px solid #ddd;
    }

    .form-body {
        padding: 25px;
    }

    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group {
        flex: 1;
    }

    label {
        display: block;
        font-size: 13px;
        margin-bottom: 6px;
        color: #333;
        font-weight: 500;
    }

    input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
    }

    input:focus {
        border-color: #002147;
        outline: none;
    }

    .form-footer {
        padding: 20px 25px;
        border-top: 1px solid #eee;
        display: flex;
        justify-content: flex-end;
    }

    button {
        background: #002147;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 500;
    }

    button:hover {
        background: #003366;
    }

    .success-box {
        margin: 20px;
        padding: 15px;
        background: #e8f5e9;
        border-left: 5px solid #2e7d32;
        display: none;
    }

    .footer-note {
        text-align: center;
        font-size: 12px;
        color: #777;
        margin-top: 20px;
    }

    @media(max-width: 768px) {
        .form-row {
            flex-direction: column;
        }
    }



.success-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.success-header {
    background: #e8f5e9;
    padding: 15px 20px;
    border-bottom: 1px solid #c8e6c9;
}

.success-header h2 {
    margin: 0;
    color: #1b5e20;
    font-size: 18px;
}

.success-header p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #2e7d32;
}

.success-body {
    padding: 20px;
}

.ref-box {
    background: #f4f6f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

.ref-box span {
    display: block;
    font-size: 12px;
    color: #777;
}

.ref-box strong {
    font-size: 18px;
    color: #002147;
}

.instruction {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
}

.btn.primary {
    background: #002147;
    color: white;
}

.btn.secondary {
    background: #777;
    color: white;
}

/* 
Status Check 

*/
 
 
 
 
 .status-page .container {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 25px;
    border-radius: 8px;

   
}

 .status-page .header {
        background: #002147;
        color: white;
        padding: 15px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

   .status-page .header h1 {
        font-size: 18px;
        font-weight: 500;
    }

  .status-page  .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

  .status-page  .logo img {
        height: 40px;
    }

   .status-page .container {
        max-width: 900px;
        margin: 40px auto;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        overflow: hidden;
    }

   .status-page .section-header {
        background: #e9eef5;
        padding: 15px 20px;
        font-weight: 500;
        border-bottom: 1px solid #ddd;
    }

    .status-page .form-body {
        padding: 25px;
    }

    .status-page .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .status-page .form-group {
        flex: 1;
    }

    .status-page label {
        display: block;
        font-size: 13px;
        margin-bottom: 6px;
        color: #333;
        font-weight: 500;
    }

    .status-page input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
    }

    .status-page input:focus {
        border-color: #002147;
        outline: none;
    }

    .status-page .form-footer {
        padding: 20px 25px;
        border-top: 1px solid #eee;
        display: flex;
        justify-content: flex-end;
    }

   .status-page  button {
        background: #002147;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 500;
    }

    .status-page button:hover {
        background: #003366;
    }

    .status-page .success-box {
        margin: 20px;
        padding: 15px;
        background: #e8f5e9;
        border-left: 5px solid #2e7d32;
        display: none;
    }

   .status-page  .footer-note {
        text-align: center;
        font-size: 12px;
        color: #777;
        margin-top: 20px;
    }