/* Password Page Styles */
html, body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Main Content Area */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

/* Password Container */
/* Password Container */
.password-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    color: rgb(0, 0, 0);
}

/* Password Form Elements */
.password-container input {
    width: 100%;
    padding: 12px;
    border-radius: 15px;
    border: none;
    outline: none;
    background: rgb(250, 247, 247);
    color: rgb(253, 9, 9);
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.password-container input::placeholder {
    color: rgb(247, 9, 9);
}

.password-container button {
    width: 100%;
    padding: 12px;
    border-radius: 15px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    background: #FFD700;
    color: black;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.password-container button:hover {
    background: #FFC107;
    transform: translateY(-2px);
}

/* Error Message */
#error-message {
    display: none;
    color: #ff4444;
    font-weight: bold;
    margin-top: 10px;
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .password-container {
        margin: 0 15px;
    }
}

/* Header & Footer Specific Overrides */
.navbar {
    margin-bottom: 0;
    background: white !important;
}

footer {
    margin-top: auto;
}

/* Maintain existing scroll-to-top button styles */
#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1000;
    background: transparent;
}