/* Custom styling for password form */
.custom-password-form {
    max-width: 600px;
    width: 350px;
    margin-top: 150px !important;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.custom-password-form img {
    max-width: 100%;
    margin: 0 auto 20px;
    display: block;
}

.custom-password-form p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    font-family: Georgia, 'Times New Roman', Times, serif;

}

.copyrights {
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0 auto;
    width: fit-content; /* or a specific width, e.g., 50% */
}


.custom-password-form input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background-color: #f4f4f4;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
    font-size: 16px;
}

.custom-password-form input[type="submit"] {
    width: 100%;
    background: linear-gradient(90deg, #d32f2f 0%, #ec6161 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.custom-password-form input[type="submit"]:hover {
    background: linear-gradient(90deg, #2E8B57 0%, #4CAF50 100%);
}

.custom-password-form .error {
    color: red;
    margin-bottom: 10px;
}

#toggle-password {
    margin-left: 10px;
    cursor: pointer;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .custom-password-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .custom-password-form {
        max-width: 100%;
    }
}

body {
    background-image: url('banner.jpg') !important; /* Replace 'banner.jpg' with your image path */
    background-size: cover !important; /* Ensures the image covers the whole background */
    background-repeat: no-repeat !important; /* Prevents the image from repeating */
    background-attachment: fixed !important; /* Keeps the background fixed during scrolling */
    background-position: center center !important; /* Centers the image */
    height: 100vh !important; /* Ensures the body takes the full viewport height */
    margin: 0 !important; /* Removes default margin */
    padding: 0 !important; /* Removes default padding */
}