.object-page {
    background-image: url("../images/login/object_back.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.object-box {
    position: relative;
    width: 100%;
    backdrop-filter: blur(5px);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    padding: 7.5em 2.5em 4em 2.5em;
    color: var(--second-color);
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}
.object-box tbody {
    color: #ffffff;
}

.gallery-small-section {
    background-image: url("../images/login/gallery-back.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.contact-section {
    background-image: url("../images/login/contact_back.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact-box {
    position: relative;
    width: 100%;
    backdrop-filter: blur(2px);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    padding: 7.5em 2.5em 4em 2.5em;
    color: var(--second-color);
    background-color: rgb(0 0 0 / 46%);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
}
/* .contact-box input::placeholder {
    color: #cdc3c3;
} */
.register-section {
    background-image: url("../images/login/register_back.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.register_box {
    position: relative;
    width: 400px;
    backdrop-filter: blur(25px);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    padding: 7.5em 2.5em 4em 2.5em;
    color: var(--second-color);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}
.login-section {
    background-image: url("../images/login/login_back.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.login a {
    text-decoration: none;
    color: var(--second-color);
}
.login a:hover {
    text-decoration: underline;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
}
.login_box {
    position: relative;
    width: 370px;
    backdrop-filter: blur(25px);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    padding: 7.5em 2.5em 4em 2.5em;
    color: var(--second-color);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}
.login-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    width: 140px;
    height: 70px;
    border-radius: 0 0 20px 20px;
}
.login-header span {
    font-size: 30px;
    color: #ffffff;
}
.login-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 30px;
    border-top-right-radius: 50%;
    background: transparent;
    box-shadow: 15px 0 0 0 var(--color-primary);
}
.login-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 30px;
    border-top-left-radius: 50%;
    background: transparent;
    box-shadow: -15px 0 0 0 var(--color-primary); /* Removed space before --primary-color */
}
.input_box {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}
.input-field {
    width: 100%;
    height: 55px;
    font-size: 16px;
    background: transparent;
    color: #ffffff;
    padding-inline: 20px 50px;
    /* border: 2px solid var(--color-primary); */
    /* border: 2px solid #ffffff; */
    border-bottom: 2px solid #ffffff;
    border-top: transparent;
    border-left: transparent;
    border-right: transparent;
    border-radius: 30px;
    outline: none;
}
#user {
    margin-bottom: 10px;
}
.login_label {
    position: absolute;
    top: 15px;
    left: 20px;
    transition: 0.2s;
    color: #ffffff;
}
.login_label_textarea {
    position: absolute;
    top: 15px;
    left: 20px;
    transition: 0.2s;
    color: #ffffff;
}
textarea::placeholder {
    padding-top: 15px;
}
.input-field:focus ~ .login_label,
.input-field:valid .login_label {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 14px;
    background-color: var(--color-primary);
    border-radius: 30px;
    color: #ffffff;
    padding: 0 10px;
}

.input-field:focus ~ .login_label_textarea,
.input-field:valid .login_label_textarea {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 14px;
    background-color: var(--color-primary);
    border-radius: 30px;
    color: #ffffff;
    padding: 0 10px;
}

.input-field:not(:placeholder-shown) ~ .login_label {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 14px;
    background-color: var(--color-primary);
    border-radius: 30px;
    color: transparent;
    padding: 0 10px;
}

.input-field:not(:placeholder-shown) ~ .login_label_textarea {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 14px;
    background-color: var(--color-primary);
    border-radius: 30px;
    color: transparent;
    padding: 0 10px;
}
/* Closed the missing brace */

.logo-icon {
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 20px;
}
.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #ffffff;
}
.forgot:hover {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(244, 137, 30, 0.5);
}
.input-submit {
    width: 100%;
    height: 50px;
    background: #ececec;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}
.input-submit:hover {
    background: var(--color-secondary);
    color: #ffffff;
}
.register {
    text-align: center;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(244, 137, 30, 0.5);
}
.register a:hover {
    text-align: center;
    color: #ffffff;
    font-weight: bolder;
    text-shadow: 1px 1px 2px rgba(244, 137, 30, 0.5);
}
.register a {
    font-weight: 500;
}
@media only screen and (max-width: 564px) {
    .wrapper {
        padding: 20px;
    }
    .login_box {
        padding: 7.5em 1.5em 4em 1.5em;
    }
}

.login-admin {
    background-image: url("../images/footer-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.login-admin.login_box {
    position: relative;
    width: 370px;
    backdrop-filter: blur(25px);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    padding: 7.5em 2.5em 4em 2.5em;
    color: var(--second-color);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.6);
}
.login-admin a {
    color: #ffffff;
}

.dashboard-section {
    background-image: url("../images/bgs/dashboard.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
}
.contribute-section {
    background-image: url("../images/bgs/contribute.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
}
.pricing-section {
    background-image: url("../images/bgs/price.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: transparent;
    color: #ffffff;
}
.profile-section {
    background-image: url("../images/bgs/profile.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: transparent;
    color: #ffffff;
}
.terms-section {
    background-image: url("../images/bgs/terms.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: transparent;
    color: #ffffff;
}
.bg-transparent {
    /* background-color: rgba(0, 0, 0, 0.5); */
    backdrop-filter: blur(25px);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    padding: 1.5em 2.5em 4em 1.5em;
    color: var(--second-color);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}

.wrapper2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
/* -------------------------------------------*/
/* ----------   Sontainer Styles   --------------*/
.sr-container {
    min-height: calc(55vh - 50px);
    backdrop-filter: blur(99px);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    padding: 1.5em 2.5em 4em 1.5em;
    color: var(--second-color);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.6);
}
/* -------------------------------------------*/
/* ----------    Table Styles   --------------*/
.sr-table {
    color: var(--second-color);
}
.sr-table thead {
    background-color: var(--color-secondary);
    border-radius: 50px;
}
/* table header border round      */
.sr-table th:first-child {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.sr-table th:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
/* table header border round ends */

.sr-table tbody {
    background-color: #ffffff;
    color: var(--color-secondary);
    font-weight: bolder;
}
/* table body border round      */
.sr-table tbody td:first-child {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.sr-table tbody td:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
/* table body border round ends */
.sr-table tbody tr:hover {
    background-color: var(--color-secondary);
    color: #ffffff;
    font-weight: bolder;
}
.sr-table th,
.sr-table td {
    vertical-align: middle;
}
.sr-table img {
    width: 30px; /* Set the desired width */
    height: 30px; /* Set the desired height */
    border-radius: 50%;
    object-fit: cover; /* Ensures the image covers the box */
    display: block; /* Ensures no extra space around the image */
}
/* ---------- Pagination box styles  ---------  */
.pagination .page-link {
    color: var(--color-secondary);
    text-decoration: none;
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.pagination .page-item {
    height: 50%;
}
.pagination .page-item.active .page-link {
    background-color: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}
/* ---------- Pagination box styles end ---------  */
