﻿

body {
    /* Set the background image */

    background-image: url('../images/bg.jpg');
    /* Center the background */
    background-position: center;
    /* Ensure it covers the entire page */
    background-size: cover;
    /* Prevent repetition */
    background-repeat: no-repeat;
    /* Optional: Fix background while scrolling */
    background-attachment: fixed;
    /* Optional: Set margin and height to ensure it fills the page */
    margin: 0;
    height: 100vh;
        
}

.form-header {
    margin-bottom: 20px;
    text-align: center;
}


.logo {

    width: 100% !important;
    display: block;
    margin: 0 auto;
}

.page {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container-tight {
    max-width: 400px; /* Adjust width for responsiveness */
    width: 100%;
}

.card {
    background: #FFFFFF; /* Transparent background for card */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.custombutton {
    background-color: #5d2f59 !important;
}
    .custombutton:hover {
        background-color: #7a3e75 !important; /* lighter shade on hover */
    }
.card-md > .card-body {
    padding: 1rem;
}

.form-control {
    background-color: #F3F2EE;
    border: 1px solid #e8e7e3;
    border-radius: 4px;
    color: #66615b;
    font-size: 14px;
    padding: 7px 18px;
    height: 40px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.role-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* 50% transparent white, no blur */
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #ccc;
    /* no backdrop-filter for blur */
}

.role-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #800080;
    text-align: center;
}

.role-panel-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

    .role-panel-buttons button {
        padding: 8px 16px;
        border: 2px solid #800080;
        background: transparent;
        color: #800080;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
        transition: none; /* no transition effect */
    }

        .role-panel-buttons button:hover {
            background-color: #800080;
            color: white;
        }
.form-footer {
    margin-top: 1px;
    position: relative;
}

.forgot-password-link {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
}

.loginbox {
    padding-top: 0px !important;
    margin-top: -100px;
}