

div#lockImage {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 0;
        height: 385.969px;
        background-image: url(https://bosconsortium.wpenginepowered.com/wp-content/uploads/2020/06/Boston-Public-Garden-805165712_2128x1413_edited62220.jpg);
    
}
/* Base Styles */
body {
    background-color: #2c3e50;
    color: #ffffff;
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Hidden Elements */
.hidden {
    display: none;
}

/* Select2 Styles */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #2c2c2c !important;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

/* PDF Item Styles */
.pdf-thumbnail {
    width: 100px;
    height: auto;
    margin-right: 15px;
}

.pdf-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #34495e;
    padding: 10px;
    border-radius: 8px;
}

.pdf-info {
    flex-grow: 1;
}

/* Admin Dashboard Styles */
.navbar,
.stat-card,
.list-group-item {
    background-color: #34495e !important;
}

.stat-card {
    border: none;
    color: #ecf0f1;
    margin-bottom: 20px;
}

.stat-card .card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-card .stat-icon {
    font-size: 2.5rem;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #3b5998;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #4c6ef5;
}

/* Button Styles */
.btn {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.btn-primary {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-danger {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.btn-warning {
    background-color: #f0ad4e;
    color: white;
}

.btn-warning:hover {
    background-color: #ec971f;
}

.btn-danger:hover {
    background-color: #c9302c;
}

/* Alert Styles */
.alert {
    padding: 15px;
    background-color: #f44336;
    color: white;
    margin-bottom: 20px;
}

/* Miscellaneous */
hr.my-4 {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

/* Index Page Styles */
.header {
    text-align: center;
    margin-top: 50px;
}

.content {
    display: flex;
    justify-content: center;
    height: 70vh;
}

.form-container {
    max-width: 400px;
    width: 100%;
    margin: 0 20px;
}

.login-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    margin: 0;
    color: #333;
}

.login-content .form-container {
    margin-bottom: 20px;
}

.login-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.login-content input[type="text"],
.login-content input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.login-button {
    width: 100%;
    padding: 10px;
    background-color: #0073e6;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #005bb5;
}

/* Container Styles */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('your-background-image-url.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
    width: 900px;
    max-width: 100%;
}

/* Left and Right Section Styles */
.left {
    background-color: #B15305;
    color: white;
    padding: 40px;
    width: 50%;
    box-sizing: border-box;
}

.left h2 {
    font-weight: 400;
    margin-bottom: 20px;
}

.left p {
    font-size: 14px;
    line-height: 1.6;
}

.left .profile {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.left .profile img {
    border-radius: 50%;
    margin-right: 15px;
    width: 50px;
}

.right {
    padding: 40px;
    width: 50%;
    box-sizing: border-box;
}

.right h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.right .form-group {
    margin-bottom: 15px;
}

.right .form-group label {
    display: block;
    margin-bottom: 5px;
}

.right .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}