/* General body reset */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main content styling */
.content {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: auto;
    padding: 30px;
    background: #ffffff; /* Main content background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden until password is entered */
}

/* Styles for Password Prompt */
.password-prompt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5);  */
    /* Black color with 50% opacity */
    background-color: rgb(241, 241, 241); 
    /* Semi-transparent overlay */
    display: none; /* Visible by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    background: #fffffff6; /* Session expired prompt background */
    padding: 40px;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Adjustments for Mobile View */
@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 30px;
        margin: 20px;
    }
}

.container h2 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 24px;
    color: #333;
}

.container input[type="enter-details"] {
    width: calc(100% - 20px);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.container input[type="password"] {
    width: calc(100% - 20px);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.container button {
    width: 100%;
    padding: 15px;
    background-color: #003dad;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
}

.container button:hover {
    background-color: #3459bd;
}

.container a {
    display: block;
    margin-top: 20px;
    color: #003dad;
    text-decoration: none;
}

.container a:hover {
    text-decoration: underline;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.alert-error {
    background-color: #ffe6e6; /* Light red background */
    border: 1px solid #f5c6cb; /* Red border */
    color: #721c24; /* Dark red text */
}

.alert-success {
    background-color: #e6ffed; /* Light green background */
    border: 1px solid #c3e6cb; /* Green border */
    color: #155724; /* Dark green text */
}

/* Logo styling */
.logo {
    max-width: 210px;  /* Increased maximum width */
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Responsive adjustments for the logo */
@media (max-width: 400px) {
    .logo {
        max-width: 80%;  /* Adjust the width for smaller screens */
        height: auto;
    }
}