/* ✅ Fixed header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
    display: flex;
    top: 20px;
    left: 30px;
}

/* ✅ Full-page background on body */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url("https://eraaymedia.s3.ap-south-1.amazonaws.com/repository/eraaywebiteimages/6-Qualitative.jpeg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

/* ✅ Main content below header */
.page-content {
    margin-top: 60px; /* same as header height */
    flex: 1;
    display: flex;
    justify-content: flex-end; /* default: right side */
    align-items: center;
    padding: 20px;
}

/* ✅ Login box */
.login-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

    .login-box button {
        width: 100%;
        padding: 10px;
        background: #126484; /* Consistent teal */
        border: none;
        border-radius: 5px;
        color: white;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .login-box button:hover {
            background: #0e4660; /* Darker teal on hover */
        }



    .login-box h3 {
        text-align: center;
        margin-bottom: 20px;
        color: #126484;
    }


    .login-box button {
        width: 100%;
        padding: 10px;
        background: #126484; /* Consistent teal */
        border: none;
        border-radius: 5px;
        color: white;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .login-box button:hover {
            background: #0e4660; /* Darker teal on hover */
        }


    .login-box .text-danger {
        color: red;
        font-size: 0.9rem;
    }
