.content-wrapper,
.page-body-wrapper,
.footer {
    background: transparent;
}

body {
    background: transparent;
}

.navbar {
    display: none !important;
}

.page-body-wrapper {
    min-height: 100%;
}

.footer {
    margin: 0;
}

.footer a,
.footer span {
    font-size: 14px;
    color: #787878;
    text-decoration: none;
    font-weight: 500;
    margin: 0;
}

.auth-wrapper {
    min-height: calc(100% - 45px);
    margin: 0 20px;
    position: relative;
}

body:has(.auth-wrapper):before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(frontend/assets/bg.jpg);
    background-size: cover;
    opacity: .1;
    pointer-events: none;
    z-index: -1;
}

.auth-container {
    min-height: calc(100% - 45px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 6rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 1rem;
}

.nav-logo {
    display: block;
    text-align: center;
    position: absolute;
    top: 20px;
}

.nav-logo img {
    width: auto;
    height: 45px;
}

.signin-form {
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 3rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
}

.auth-heading h1 {
    font-size: 30px;
    font-weight: 700;
}

.auth-heading {
    margin-bottom: 25px;
}

.auth-heading p {
    font-size: 14px;
    opacity: .7;
}

.auth-container .theme-btn {
    font-size: 14px;
    margin: 0 !important;
}

.auth-container .singin-btn,
.block-btn {
    border: 1px solid #d0d9b5;
    width: 100%;
    display: block;
    text-align: center;
}

.forgot-pass {
    margin: 10px 0;
    text-align: right;
    font-size: 13px;
    color: #000;
}

.forgot-pass .auth-link {
    color: #979797;
    text-decoration: none;
    font-weight: 500;
}

.view-area *,
.view-area {
    font-size: 14px;
    color: #636363 !important;
}

.view-area a {
    font-weight: 700;
}

.view-area {
    margin-top: 1rem;
}

.view-area a:hover {
    color: #000 !important;
}

.form-field-data {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 2rem;
}

.form-field-data .form-group {
    margin: 0;
}

.fileinput.fileUpload {
    padding: 12px;
    background: #fff;
}

.job-card {
    border: none !important;
    gap: 3rem;
}

.career-portal .h1title {
    margin-bottom: 14px;
    font-size: 16px;
    opacity: .5;
}

.job-portal {
    margin: 0;
    min-width: 650px;
}

.auth-container:has(.job-portal) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.career-portal {
    margin: 5rem;
}

.job-card:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

.modal-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.modal-heading h4 {
    margin: 0;
}

.modal-heading .modal__close {
    font-size: 35px;
    line-height: 0;
    width: 0;
}

.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(77, 77, 77, 0.7);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    overflow-y: auto;
}

.modal:target {
    visibility: visible;
    opacity: 1;
}

.modal__content {
    border-radius: 10px;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 1em 2em;
    overflow-y: auto;
    max-width: calc(100% - 5rem);
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #585858 !important;
    text-decoration: none !important;
}

.modal__scrollable-content {
    overflow: auto;
    max-height: 28vw;
}

.modal__scrollable-content p {
    font-size: 15px;
    color: #757575;
    font-weight: 500;
}

.job-card_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.fogrot-form .form-group {
    max-width: 100%;
    width: 100%;
}

.back a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: .7;
}

.back a span {
    font-size: 18px;
}

.flex-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}


@media (max-width: 767px) {
    .career-portal {
        margin: 0;
        margin-top: 2rem;
        width: 100%;
    }

    .job-portal {
        margin: 0;
        min-width: 100%;
    }
}

@media (max-width: 600px) {
    .form-field-data {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .signin-form {
        padding: 25px 0;
        width: 100%;
        background: transparent;
        border: none;
    }
}