*{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Mokoto';
    src: url('../fonts/Mokoto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    letter-spacing: 5px !important;
}


.profile-edit-form {
    max-width: 500px;
    margin: auto;
    margin-top: 150px;
    padding: 0 20px;
    color: #111;
}

.profile-edit-form h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #222;
}

.profile-edit-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-edit-form label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.profile-edit-form input[type="text"],
.profile-edit-form input[type="number"],
.profile-edit-form input[type="email"],
.profile-edit-form input[type="password"] {
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.profile-edit-form input:focus {
    border-color: #0057ff;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.profile-edit-form .btn {
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: #0057ff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.profile-edit-form .btn:hover {
    background-color: #0043cc;
}

.digital-footer {
    background: linear-gradient(120deg, #014c97, #002f5a);
    color: #ffffff;
    padding: 40px 0;
    font-size: 0.95rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left,
.footer-center,
.footer-right {
    margin: 10px 0;
    text-align: center;
}

.company-info {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #cfd8dc;
}

.footer-logo {
    text-decoration: none;
    color: #ffffff;
}

.footer-logo:hover {
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: inline-block;
    margin: 0 10px;
}

.footer-links a {
    color: #cfd8dc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.powered-by {
    font-weight: 500;
    color: #cfd8dc;
    margin-top: 10px;

}

.powered-by a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-family: "Mokoto", sans-serif !important;
    letter-spacing: 2px !important;
}

.powered-by a:hover {
    color: #cfd8dc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
}

.message-popup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: #fff;
    /* White background */
    /* Black text */
    border: 0.5px solid #ffffff;
    /* Thin black border for all sides */
    /* Highlighted left border */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
    overflow: hidden;
}

.skip-btn {
    display: flex;
    justify-content: end;
    align-items: end;
    text-decoration: none;
    color: #000 !important;
    background-color: transparent !important;
    border-radius: 5px;
    border: none;
}

.skip-btn:hover {
    background-color: transparent !important;
}

.popup-error {
    color: #3d1e1e;
    background-color: #ffb0ad;
    border: 1px solid #3d1e1e;
}

.popup-success {
    color: #1e3d1e;
    background-color: #adffb0;
    border: 1px solid #1e3d1e;
}

.error {
    color: red;
}

.success {
    color: green;
}

.footer-right strong {
    font-family: 'Mokoto';
}