body {
    background: #f2f4f8;
    margin: 0;
    font-family: "Segoe UI", Arial;
}

/* Centered Page */
.center-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f2f4f8;
}

/* Login Card */
.login-card {
    background: white;
    width: 360px;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    text-align: center;
}

/* Logo (optional) */
.logo {
    width: 75px;
    margin-bottom: 15px;
}

/* Input boxes uniform */
.input-box {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 15px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
}

.input-box:focus {
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0,123,255,0.4);
}

/* Button uniform */
.btn-login {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    font-size: 15px;
    font-weight: bold;
    background: #007bff;
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.btn-login:hover {
    background: #0056b3;
}

/* Status text */
#status {
    margin-top: 12px;
    font-size: 14px;
    color: rgb(0, 221, 81);
}


.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}

th {
    background: #007bff;
    color: white;
    padding: 12px;
}

td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

tr:nth-child(even) {
    background: #f7faff;
}

.link-btn {
    color: #0050d4;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
}
.login-footer {
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 10px;
    left: 0;
    font-size: 13px;
    color: #000000;
    letter-spacing: 0.3px;
}


/* Login links (Register + Forgot Password) */
.login-links {
    margin-top: 12px;
    font-size: 14px;
}

.login-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.login-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.dashboard-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1d4c9a;
    letter-spacing: 0.5px;
}


/* Reigster Page Styles */

/* Register Card */
.register-card {
    background: white;
    width: 380px;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    text-align: center;
}

/* Register Title */
.register-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
    color: #1a3d7c;
}


.header-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
    color: #1a3d7c;
}

/* Register Button */
.btn-register {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background: #28a745;
    color: white;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-register:hover {
    background: #1e7e34;
}

/* Link under form */
.register-links {
    margin-top: 14px;
}

.login-link {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
}

.login-link:hover {
    text-decoration: underline;
}


/* SAME CARD AS REGISTER PAGE */
.register-card {
    background: white;
    width: 380px;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    text-align: center;
    margin-top: 40px;
    font-family: 'Poppins', sans-serif;
}

/* SAME TITLE STYLE */
.register-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #1a3d7c;
}

/* SAME INPUT STYLE */
.input-box {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 8px;
    border: 1px solid #b8c6e4;
    font-size: 14px;
}

/* SAME BUTTON STYLE (green register button) */
.btn-register {
    width: 100%;
    padding: 12px;
    margin-top: 18px;
    background: #28a745;
    color: white;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-register:hover {
    background: #1e7e34;
}

/* STATUS LABEL TEXT */
.status-label {
    margin-top: 12px;
    font-size: 14px;
}

.success-banner {
    color: green;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}

.info-box {
    margin-top: 18px;
    padding: 15px 20px;
    width: 420px;
    background: #eef5ff;
    border-left: 5px solid #003d80;
    border-radius: 8px;
    font-size: 13.5px;
    color: #003060;
    line-height: 1.5;
    text-align: left;
}
.info-box p {
    text-align: justify;
}



