
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Bottom remains #a03168 (Green) */
    background: #a03168;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    padding-top: 20px;
}

/* UPPER HALF BACKDROP: Replace the URL below with your real music image */
.top-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh; /* Covers the top half */
    background-color: #ffffff; /* White base */
    background-image: url('https://myfmworkplace.com/img/backdrop6.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
/* Base: remove transparency everywhere */
.ui-pnotify,
.ui-pnotify-container,
.ui-pnotify-history-container {
    opacity: 1 !important;
}

 
    .ui-pnotify-container.alert-success {
        background-color: #28a745 !important;
        color: #ffffff !important;
    }


    .ui-pnotify-container.alert-error {
        background-color: #dc3545 !important;
        color: #ffffff !important;
    }

 
    .ui-pnotify-container.alert-info {
        background-color: #0d6efd !important;
        color: #ffffff !important;
    }

    
    .ui-pnotify-container.alert {
        background-color: #ffc107 !important;
        color: #000000 !important;
    }
/* Subtle geometric overlay for the whole page */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://img.freepik.com/free-vector/white-abstract-background-3d-paper-style_23-2148403778.jpg');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.login-card {
    background: white;
    padding: 4.5rem 2.5rem 2.5rem 2.5rem;
    border-radius: 40px;
    width: 99%;
    max-width: 440px;
    position: relative;
    z-index: 2; /* Sits above backdrop and overlay */
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.icon-badge {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
}

    .icon-badge img {
        width: 85%;
        height: auto;
        object-fit: contain;
    }

.login-title {
    color: #a03168; /* Brand Magenta */
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-label {
    color: #666;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 5px;
    text-transform: uppercase;
}

.form-control {
    background-color: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    transition: 0.3s;
}

    .form-control:focus {
        background-color: #fff;
        border-color: #a03168; /* Brand Green */
        box-shadow: 0 0 0 4px rgba(114, 165, 65, 0.1);
        outline: none;
    }

.btn-login {
    background-color: #a03168; /* Brand Magenta */
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    padding: 1rem;
    width: 100%;
    margin-top: 1.5rem;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(160, 49, 104, 0.3);
}

    .btn-login:hover {
        background-color: #852856;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(160, 49, 104, 0.4);
        color: white;
    }

.footer-links a {
    color: #a03168; /* Brand Green */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.2s;
}

    .footer-links a:hover {
        color: #a03168;
        text-decoration: underline;
    }


