/* Reset Some Basic Elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Poppins-Regular, sans-serif;
    background-color: #fff8f0; /* Light yellowish background */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.mainbody {
    display: flex;
    font-family: Poppins-Regular, sans-serif;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(to right, #800000, #fff8f0);
    position: relative;
}

/* Hide the triangles on mobile and iPad devices */
@media (max-width: 1024px) {
    .mainbody::before,
    .mainbody::after {
        display: none; 
    }
}

.mainbody::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 390px 0 250px 350px;
    border-color: transparent transparent transparent #dca2a2;
    z-index: 1; /* Keep below login box */
}

.mainbody::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    transform: translateY(-10%); 
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 390px 0 0px 350px;
    border-color: #9d3939 transparent transparent transparent;
    z-index: 1; /* Keep below login box */
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    width: 90%; 
    max-width: 400px;
    position: relative;
    z-index: 10; /* Keep above background shapes */
}

.login__container img.logo {
    max-width: 100%;
    height: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: top;
    justify-content: top;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    width: 400px;
    height: 600px; 
    position: relative;
    z-index: 10; /* Keep above background shapes */
}

.login-title {
    color: #333;
}

.top-header {
    display: flex;
    align-items: center;
    background: #ff6a00;
    color: #fff;
    height: 100px; 
}

.logo-container {
    display: flex;
    flex: 1;
    background: linear-gradient(to right, #800000, #ff6a00);
    justify-content: center;
    width: 15%;
    height: 100%;
}

.logo-container img {
    max-width: 100px; 
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 85%;
    height: 100%;
}

.nav-container-top {
    display: flex;
    height: 50%;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #0b0b0b;
    padding-left: 150px;
    color: #fff;
    border-bottom-left-radius: 25px; 
}

.nav-container-bottom {
    display: flex;
    height: 50%;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #ff6a00, #ffb700); 
    color: #fff;
}

.nav-container_bottom-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
}

.nav-container_bottom-right {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 30%;
}
.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Hide Hamburger on Desktop */
.hamburger-menu {
    display: none;
}

/* Adjustments for Login Elements */
@media (max-width: 768px) {
    .login {
        margin-top: 50px;
        padding: 15px;
    }

    .login__title {
        font-size: 1.5rem;
    }

    .form-controls {
        font-size: 1rem;
        padding: 8px;
    }

    .btn-login {
        font-size: 1rem;
        padding: 10px;
    }

    .social-icons img {
        width: 25px;
        height: 25px;
    }
}

/* Main Container Styles */
.container {
    display: flex;
    flex: 1;
    padding: 20px;
    margin-top: 0px;
    align-items: flex-start; 
    justify-content: space-between;
    background-color: #fff;
}

/* Sidebar Styles */
.sidebar {
    width: 213px;
    background-color: #fce4ec; 
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

/* Main Content Styles */
.main-content {
    flex: 1;
    padding: 0px;
    background-color: #fff;
}

.text-danger{
    color: #e57373; 
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
    background: linear-gradient(to right, #800000, #ff6a00);
    color: #fff;
    text-align: center;
    vertical-align: middle;
    padding: 8px;
}

.form-check-input {
    float: left;
    margin-top: .3rem;
    margin-left: -1.25rem
}

/* Form Styles */
form {
    max-width: 1400px;
    margin-top: 20px;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group {
    width: 100%
}

.form-control, .form-control-file, .form-control-select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.btn {
    padding: 10px 15px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.btn:hover {
    background-color: #0056b3;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

select, input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

select:hover, input:hover, textarea:hover {
    border-color: #e57373; 
    box-shadow: 0 0 5px rgba(229, 115, 115, 0.5);
}

select:focus, input:focus, textarea:focus {
    border-color: #e57373; 
    outline: none;
    box-shadow: 0 0 5px rgba(229, 115, 115, 0.8);
}

.percentage-input {
    display: flex;
    align-items: center;
}

.percentage-input input {
    width: calc(100% - 30px); 
    margin-right: 5px;
}

.percentage-input span {
    font-weight: bold;
    color: #555;
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    padding: 5px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.select2-container--default .select2-selection--multiple:focus,
.select2-container--default .select2-selection--multiple:hover {
    border-color: #e57373; 
    box-shadow: 0 0 5px rgba(229, 115, 115, 0.5);
}

button {
    padding: 12px 20px;
    background-color: #003366; 
    color: #fff;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #00509e; 
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

/* Question and Passage Styles */
.question, .passage {
    padding: 20px;
    border-radius: 8px;
    background-color: #ffe6e6; 
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.passage {
    background-color: #fff9f0; 
}

.passage-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #003366; 
    text-align: center;
}

.passage-content {
    margin-bottom: 20px;
}

.questions {
    margin-top: 10px;
}

.question h4 {
    margin: 0 0 5px 0;
    color: #003366; 
}

.options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.options li {
    padding: 5px 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #ffe6e6; 
}

.answer {
    color: #27ae60; 
    font-weight: bold;
    margin-top: 5px;
}

.back-button {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #003366; 
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
    background-color: #00509e; 
    transform: translateY(-2px);
}

.back-button:active {
    transform: translateY(0);
}

.download-button {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #003366; 
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-button:hover {
    background-color: #00509e; 
    transform: translateY(-2px);
}

.download-button:active {
    transform: translateY(0);
}

/* Container for all questions */
.questions-container {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    padding: 20px;
}

/* Individual question container */
.question-item {
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

/* Alternating background colors */
.questions-container .question-item:nth-child(odd) {
    background-color: #f0f8ff; 
}

.questions-container .question-item:nth-child(even) {
    background-color: #faebd7; 
}

.question-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.question-text {
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: bold;
}

.options-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 10px;
}

.options-list li {
    padding: 5px 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.options-list li::before {
    content: attr(data-option);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.answer-text {
    font-style: italic;
    color: #27ae60; 
    font-weight: bold;
    margin-top: 5px;
}

/* Spinner Styles */
.spinner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner img {
    width: 100px;
    height: 100px;
}

/* Essay Feedback Report Styles */
.feedback-section {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.feedback-section:nth-child(odd) {
    background-color: #e6f7ff; 
}

.feedback-section:nth-child(even) {
    background-color: #fff0f6; 
}

.feedback-section h3 {
    border-bottom: 2px solid #6c757d;
    padding-bottom: 5px;
}

.rubric-feedback {
    margin-bottom: 15px;
}

.rubric-feedback h4 {
    margin-bottom: 5px;
    color: #343a40;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

.download-buttons {
    margin-top: 0px;
    display: flex;
    gap: 10px;
}

.btn-success {
    background-color: #28a745;
    color: #ffffff;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-normal {
    background-color: #003366;
    color: #ffffff;
}

.btn-normal:hover {
    background-color: #003388;
}

.btn-back {
    background-color: #0c0238;
    color: #ffffff;
    text-decoration: none;
}

.btn-back:hover {
    background-color: #0c0238;
}

.btn-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Form Container */
.form-containers {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.set-height{
    height: 200px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-label-hidden {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffffff;
}

.form-controls {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px; 
    cursor: pointer;
    font-size: 1em;
}

.btn-login {
    background: linear-gradient(to left, #eb3333, #a05252); 
    color: #ffffff;
}

.btn-login:hover {
    background-color: #800000;
}
.btn-primary {
    background-color: #007bff;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0069d9;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-login {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Dashboard Container */
.dashboard-container {
    width:1200px;
    margin: 50px auto;
    padding: 30px;
    max-width: 1200px;
    margin: 1px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: 10px;
}

@media screen and (max-width: 600px) {
    .dashboard-container {
        width:100%;
        margin: 5px auto;
        padding: 3px;
        margin: 1px auto;
        height: 100%;
        background-color: #ffffff;
        border: 1px solid #dddddd;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin-left: 10px;
    }
}

.generate-coupons-container{
    width: 100%;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-deal-container{
    width: 70%;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prize-item{
    display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap;
}

@media screen and (max-width: 764px) {
    .event-deal-container {
        width:100%;
        margin: 5px auto;
        padding: 3px;
        margin: 1px auto;
        height: 100%;
        background-color: #ffffff;
        border: 1px solid #dddddd;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin-left: 10px;
    }

    .form-field {
        width: calc(50% - 10px); 
    }
}

.short-textbox {
    width: 200px;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-style: solid;
}

.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6
}

.table tbody+tbody {
    border-top: 2px solid #dee2e6
}

.table-sm td, .table-sm th {
    padding: .3rem
}

.table-bordered {
    border: 1px solid #dee2e6
}

.table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6
}

.table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px
}

.table-borderless tbody+tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
    border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05)
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, .075)
}  

.btnn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    float: right;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btnn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btnn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc
}

.btnn-primary.focus,
.btnn-primary:focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5)
}

.btnn-primary.disabled,
.btnn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.closeessay {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.closeessay:hover,
.closeessay:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.feedback-section {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.feedback-section h4 {
    margin-top: 0;
    color: #333;
}

.feedback-layout {
    font-family: Arial, sans-serif;
}

.feedback-layout h3, h4 {
    margin-top: 20px;
    color: #333;
}

.feedback-layout ul {
    list-style-type: none;
    padding: 0;
}

.feedback-layout li {
    background-color: #f9f9f9;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #007bff;
}

.feedback-layout p {
    margin: 10px 0;
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6
}

.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

.dropdown .btn-light {
    border: none;
    background: none;
    padding: 0;
    color: #333;
}

.dropdown .btn-light:hover {
    color: #007bff;
}

.dropdown .dropdown-menu {
    min-width: 100px;
}

/* General container styling */
.review_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Filters section styling */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between; 
    width: 100%; 
}

.filters label {
    font-weight: bold;
    margin-right: 5px;
}

.filters input, .filters button {
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1; 
    min-width: 150px; 
}

.filters button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    flex: 0; 
}

.filters button:hover {
    background-color: #0056b3;
}

table a {
    color: #007bff;
    text-decoration: none;
}

table a:hover {
    text-decoration: underline;
}

#select_all {
    cursor: pointer;
}

input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}

button[type="submit"] {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 14px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #218838;
}

.page-icon-container {
    background-color: #800000; 
    padding: 0.75rem;
    border-radius: 0.5rem;
    line-height: 1; 
}

.btn-primary {
    background-color: #800000 !important; 
    border-color: #800000 !important;
}

.btn-primary:hover {
    background-color: #a52a2a !important; 
    border-color: #a52a2a !important;
}

.btn-outline-primary {
    color: #800000;
    border-color: #800000;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #800000;
    border-color: #800000;
}

.form-control:focus, .form-select:focus {
    border-color: #FF6A00; 
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.25);
}

.badge.bg-info {
    background-color: #0d6efd !important; 
}

.badge.bg-success {
    background-color: #198754 !important; 
}

.rg-container{
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0; 
  padding: 20px;
  align-items: flex-start;
  justify-content: flex-start; 
  background-color: #fff;
}

.flash-message{
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
}

/* =========================================
   TABLET & MOBILE FIXES (< 1024px)
   This unified block replaces the broken hamburger CSS 
   and fixes the iPad header overlap.
   ========================================= */

@media (max-width: 1024px) {
    /* Hide desktop nav, show mobile hamburger */
    .nav-container {
        display: none !important;
    }

    .hamburger-menu {
        display: block !important;
        margin-right: 20px;
    }

    /* Header Layout */
    .logo-container {
        width: auto !important;
        background: transparent !important;
        padding-left: 20px !important;
    }

    /* Main body layout centering for login box */
    .mainbody {
        justify-content: center;
        align-items: center;
    }

    .login, .login-container {
        position: relative;
        z-index: 10;
        margin-top: 20px !important;
    }

    /* Column resets */
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        box-shadow: none;
        border-bottom: 1px solid #ccc;
    }
    
    .form-group-1 {
        width: 100%;
    }

    .form-field {
        width: calc(50% - 10px); 
    }
    
    .btn {
        width: 100%;
    }
}