.preloader-admin {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100vh !important;
    background: var(--header-bg-color) !important;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loading-header-admin {
    font-size: 4rem;
    color: var(--text-color-light);
}

.logo-fixed-bottom {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 180px;
    opacity: 0.8;
    z-index: 1000;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.7); /* Αχνό λευκό φόντο */
    padding: 8px 12px;
    border-radius: 10px;
    backdrop-filter: blur(3px); /* ελαφρύ blur για πιο soft αποτέλεσμα */
  }
/*.loader-admin {
    width: 40px;
    aspect-ratio: 1;
    color: var(--third-color);
    position: relative;
    background: conic-gradient(from 134deg at top, currentColor 92deg, #0000 0)
            top,
        conic-gradient(from -46deg at bottom, currentColor 92deg, #0000 0)
            bottom;
    background-size: 100% 50%;
    background-repeat: no-repeat;
}
.loader-admin:before {
    content: "";
    position: absolute;
    inset: 0;
    --g: currentColor 14.5px, #0000 0 calc(100% - 14.5px), currentColor 0;
    background: linear-gradient(45deg, var(--g)),
        linear-gradient(-45deg, var(--g));
    animation: l7 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}
@keyframes l7 {
    33% {
        inset: -10px;
        transform: rotate(0deg);
    }
    66% {
        inset: -10px;
        transform: rotate(90deg);
    }
    100% {
        inset: 0;
        transform: rotate(90deg);
    }
}*/
.loader-admin {
    --c: no-repeat linear-gradient(var(--third-color) 0 0);
    background: 
        var(--c), var(--c), var(--c),
        var(--c), var(--c), var(--c),
        var(--c), var(--c), var(--c);
    background-size: 24px 24px; /* Μεγαλύτερα τετράγωνα */
    animation: 
        l32-1 1s infinite,
        l32-2 1s infinite;
}

@keyframes l32-1 {
    0%,100% {width: 80px; height: 80px} /* Αύξηση μεγέθους */
    35%,65% {width: 100px; height: 100px} /* Ενδιάμεσο μέγεθος */
}

@keyframes l32-2 {
    0%,40% {
        background-position: 
            0 0, 0 50%, 0 100%,
            50% 100%, 100% 100%, 100% 50%, 
            100% 0, 50% 0, 50% 50%;
    }
    60%,100% {
        background-position: 
            0 50%, 0 100%, 50% 100%, 
            100% 100%, 100% 50%, 100% 0, 
            50% 0, 0 0, 50% 50%;
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100vh !important;
    background: var(--third-color) !important;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal {
    width: 95vw;
    max-width: 600px;
    height: 70vh;
    max-height:450px;
    background: var(--secondary-color);
    border: 1px solid var(--background-color);
    padding: var(--margin);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(90, 90, 90, 0.1);
}

.terminal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(90, 90, 90, 0.05),
        rgba(90, 90, 90, 0.05) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}

.terminal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--gutter);
}

.commands-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--gutter);
}

.command-line {
    display: flex;
    align-items: center;
    gap: calc(var(--gutter) * 0.5);
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
}

.prompt {
    color: var(--background-color);
    opacity: 0.9;
}

.command {
    color: var(--background-color);
    opacity: 0.9;
}

.cursor {
    width: 8px;
    height: 16px;
    background: var(--background-color);
    display: inline-block;
    margin-left: 4px;
    opacity: 0;
    vertical-align: middle;
    animation: none;
}

.active-cursor {
    opacity: 0.9;
    animation: blink 1s infinite;
}

.loading-container {
    margin-bottom: calc(var(--margin) * 2);
    padding: var(--gutter);
    background: rgba(90, 90, 90, 0.05);
    border: 1px solid var(--background-color);
    border-radius: 2px;
}

.loading-bar {
    width: 100%;
    height: 20px;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--background-color);
}

.loading-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--third-color);
    box-shadow: 0 0 15px var(--background-color);
}

.loading-progress::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(10, 10, 10, 0.1) 10px,
        rgba(10, 10, 10, 0.1) 20px
    );
}

.percentage-wrap {
    position: absolute;
    bottom: var(--margin);
    right: var(--margin);
    display: flex;
    align-items: center;
    gap: 5px;
}

.percentage {
    font-family: var(--font-login);
    font-size: 24px;
    font-weight: bold;
    color: var(--background-color);
    position: relative;
    letter-spacing: 2px;
}

.percentage::before {
    content: "[";
    margin-right: 5px;
}

.percentage::after {
    content: "]";
    margin-left: 5px;
}

@keyframes blink {
    0%,
    100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0;
    }
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-dark4);
    color: var(--text-color-light);
    padding: 15px 20px;
    border-radius: 10px;
    border: solid 2px var(--background-dark);
    box-shadow: 0 4px 10px var(--background-dark);
    width: 50vw;
    max-width: 800px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.cookie-consent.hidden {
    display: none;
}
.cookie-icon {
    font-size: 24px;
    color: #ffa500;
}
.cookie-consent a {
    color: var(--text-color-light);
    text-decoration: underline;
}
.cookie-consent a:hover {
    text-decoration: none;
    color: var(--third-color);
}
.btn-accept {
    background: var(--text-color-light);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
}
.btn-accept:hover {
    background: var(--secondary-color);
    color: var(--text-color-light);
}
.content-body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: linear-gradient(
        to bottom right,
        var(--gradient-primary-start),
        var(--gradient-primary-end)
    );
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100% !important;
}
.login-container {
    display: flex;
    background: var(--background-white);
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 90vw !important;
    max-width: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.login-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    position: relative;
    border-radius: 20px 0 0 20px;
}
.login-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--header-bg-color);
    opacity: 0.05;
    z-index: 1;
}
.intro_video {
    width: 100vw !important;
    max-width: 700px;
    background: var(--third-color) !important;
}

.login-video {
    width: 100%!important;
    height: 70vh!important;
    object-fit: cover!important;
    background-size: cover!important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    border-radius: 20px 0 0 20px;
    overflow: hidden!important;
    position: relative!important;
}
.login-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.25;
    z-index: 1;
}
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}
.login-form h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.login-form h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.login-form h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
ul {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 25px;
}
.login-form .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    font-size: 1rem;
    box-shadow: inset 0 2px 4px var(--background-dark);
    transition: box-shadow 0.3s ease;
}

.login-form .form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    outline: none;
}
.login-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--background-dark3);
    border-radius: 10px!important;
    background: var(--background-dark2);
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: inset 0 2px 4px var(--background-dark);
    transition: box-shadow 0.3s ease;
}
.login-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    outline: none;
}
.login-form button {
    background: var(--primary-color);
    color: var(--text-color-light);
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}
.login-form button:hover {
    background: var(--secondary-color);
    color: var(--text-color-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.login-form .login-forgot a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: text-shadow 0.3s ease;
}
.login-form .login-forgot a:hover {
    color: var(--primary-color);
}
.login-form .login-footer {
    text-align: center;
    margin-top: 30px;
}
.login-form .login-footer a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: text-shadow 0.3s ease;
}
.login-form .login-footer a:hover {
    color: var(--primary-color);
}
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.form-check-rememeber {
    display: flex;
    align-items: left;
    gap: 10px;
    margin-bottom: 20px;
}
.form-check input[type="checkbox"],
.form-check-rememeber input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}
.form-check label,
.form-check-rememeber label {
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
}

.mobile_select + .select2-container .select2-selection--single {
    height: 50px !important;
    display: flex;
    align-items: center;
    border: none;
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--text-color) !important;
    border-radius: 0 10px 10px 0;
    box-shadow: none;
}
.mobile_select
    + .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 50px !important;
    color: var(--text-color-light);
    padding: 0 10px;
}

.mobile_select + .select2-container--default{
    width: auto!important;
}

.mobile_select + .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    transition: width 0.3s ease;
    overflow: hidden;
}

#language-select + .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: width 0.3s ease;
    overflow: hidden;
    border-radius: 15px!important;
}
.bigdrop {
    width: 200px !important;
}
.fullwidthselect2 {
    width: 100% !important;
}
.mobile_select
    + .select2-container--default.select2-container--open
    .select2-selection--single {
    width: 200px;
    justify-content: start;
}
.mobile_select
    + .select2-container--default.select2-container--open
    .select2-selection__rendered {
    overflow: visible;
    white-space: nowrap;
}
.mobile_select
    + .select2-container--default
    .select2-selection__rendered::before {
    content: "";
    display: inline-block;
    background-size: cover;
    width: 20px;
    height: 14px;
    margin-right: 10px;
}

.footer {
    background-color: var(--header-bg-color-footer);
    color: var(--text-color-light);
    padding: 20px 20px;
    text-align: center;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    margin: 0;
    margin-top: auto;
}
.footer-content {
    max-width: 1200px!important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.footer-link {
    color: var(--text-color-light) !important;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.footer-link i {
    margin-right: 8px;
    font-size: 1.4rem;
}
.footer-link:hover {
    color: var(--third-color) !important;
    transform: translateY(-3px)!important;
}
.footer-bottom {
    margin-top: 10px;
    font-size: 0.9rem;
}
.footer-bottom p {
    margin: 0;
    color: var(--text-color-light) !important;
}
.footer-bottom a {
    color: var(--text-color-light) !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.footer-bottom a:hover {
    color: var(--secondary-color);
}
.footer-divider {
    border: none;
    height: 2px;
    background: var(--third-color);
    width: 70%;
    opacity: 0.6;
    border-radius: 5px;
}
.footer-divider-bottom {
    border: none;
    height: 1px;
    background: var(--third-color);
    margin: 15px 0;
    width: 100%;
    opacity: 0.4;
    border-radius: 5px;
}
.login-form-padding {
    padding: 40px 40px 10px 40px;
}
.login-form .login-form-padding a {
    text-decoration: none;
    font-weight: bold;
    transition: text-shadow 0.3s ease;
    color: var(--secondary-color);
}

.login-form .login-form-padding a:hover {
    color: var(--primary-color);
}
.back-link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.back-link:hover {
    color: var(--header-bg-color);
    font-weight: bold;
}
.back-link i {
    font-size: 1.2rem;
    vertical-align: middle;
}

.strength-password-box {
    background: var(--background-dark);
    border-left: 4px solid var(--header-bg-color);
    padding: 1.25rem;
    padding-top: 0.1rem;
}
.strength-password-message {
    color: var(--primary-color);
}
.strength-password-requirements {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.strength-password-requirement {
    background: var(--text-color-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 1rem;
    color: var(--primary-color);
    border: 1px solid var(--background-dark2);
}
.password-strength-meter {
    margin-top: 10px;
}
.strength-bar {
    height: 10px;
    width: 10%;
    margin-top: 5px;
    border-radius: 5px;
}
.strength-bar.weak {
    background-color: #8b0000;
}
.strength-bar.medium {
    background-color: #ff4500;
}
.strength-bar.fair {
    background-color: #ffd700;
}
.strength-bar.strong {
    background-color: #228b22;
}
.strength-bar.very-strong {
    background-color: var(--header-bg-color);
}
.strength-password-requirements .valid {
    color: var(--primary-color);
    font-weight: 900;
    position: relative;
    padding-right: 25px;
}
.strength-password-requirements .valid::after {
    content: "✔";
    color: var(--primary-color);
    font-size: 1rem;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.toast {
    background-color: #030303 !important;
}
.toast-info {
    background-color: #3276b1 !important;
}
.toast-info2 {
    background-color: #2f96b4 !important;
}
.toast-error {
    background-color: #bd362f !important;
}
.toast-success {
    background-color: #51a351 !important;
}
.toast-warning {
    background-color: #f89406 !important;
}

.faq-section {
    max-width: 1200px;
}
.faq-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.faq-question {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #4a4e69;
    text-align: left;
    width: 100%;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s;
}
.faq-question:hover {
    color: #9a8c98;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    padding-left: 15px;
}
.faq-answer p {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
}
.faq-item.active .faq-answer {
    max-height: 150px;
    opacity: 1;
}

.notes-signup-container {
    position: absolute;
    left: -9999px; /* Push it off the screen */
    opacity: 0;    /* Make it invisible */
}

.notes-signup-label {
    display: none; /* Hide the label as well */
}

.notes-signup-field {
    display: none; /* Ensure bots see the input but users don’t */
}

/* Flatpickr Theme Styling */
.flatpickr-calendar {
    background: var(--background-white);
    border: 1px solid var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.flatpickr-months {
    background: var(--background-dark2);
    color: var(--text-color-light);
}

.flatpickr-current-month input {
    color: var(--text-color-light);
    background: var(--header-bg-color);
}

.flatpickr-weekday {
    color: var(--primary-color);
    font-weight: bold;
}

.flatpickr-day {
    border-radius: 4px;
    color: var(--text-color);
}

.flatpickr-day:hover {
    background: var(--background-dark3);
    color: var(--text-color-light);
}

.flatpickr-day.today {
    background: var(--secondary-color);
    color: var(--text-color-light);
    font-weight: bold;
}

.flatpickr-day.selected {
    background: var(--primary-color);
    color: var(--text-color-light);
    font-weight: bold;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: var(--background-dark3);
}

.flatpickr-day.disabled {
    color: var(--background-dark4);
    background: var(--background-color);
    cursor: not-allowed;
}

@media screen and (max-width: 1200px) {
    .login-video {
        height: 60vh;
    }
    #survey_container{
        flex-direction: column;
        margin-bottom: 5rem;
        max-height: 70vh !important;
    }
}
@media screen and (max-width: 900px) {
    .login-video {
        height: 40vh;
    }
}
@media screen and (max-width: 600px) {
    .login-video {
        height: 30vh;
        border-radius: 0;
    }
}
@media screen and (max-width: 768px) {
    .logo-fixed-bottom {
        display: none;
    }
    .cookie-consent {
        bottom: 15vw;
        width: 95vw !important;
    }
    .login-container {
        flex-direction: column;
        width: 95%;
    }
    .login-video {
        height: 200px;
        border-radius: 20px 20px 0 0;
    }
    .login-image {
        height: 200px;
        border-radius: 20px 20px 0 0;
    }
    .login-form {
        border-radius: 0 0 20px 20px;
    }
    .login-form h1 {
        font-size: 1.8rem;
    }
    .login-form p {
        font-size: 0.9rem;
    }
    .login-form button {
        font-size: 0.9rem;
    }
    .login-form-padding {
        padding: 15px 15px 5px 15px;
    }
    .content {
        margin: 0;
        font-family: "Roboto", sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        width: 100% !important;
        padding: 20px;
        box-sizing: border-box;
    }
    .login-container {
        display: flex;
        border-radius: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3),
            inset 0 1px 3px rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(20px);
        overflow: hidden;
        width: 100%;
        max-width: 600px;
        margin: 20px 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-sizing: border-box;
    }
}
@media screen and (max-width: 480px) {
    .logo-fixed-bottom {
        display: none;
    }
    .login-container {
        width: 100%;
        border-radius: 0;
    }
    .login-form-padding {
        padding: 20px 20px 5px 20px;
    }
    .login-form h1 {
        font-size: 1.5rem;
    }
    .login-form p {
        font-size: 0.85rem;
    }
    .login-form button {
        font-size: 0.8rem;
        padding: 10px;
    }
    .content {
        margin: 0;
        font-family: "Roboto", sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        width: 100% !important;
        padding: 20px;
        box-sizing: border-box;
    }
    .login-container {
        display: flex;
        border-radius: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3),
            inset 0 1px 3px rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(20px);
        overflow: hidden;
        width: 100%;
        max-width: 600px;
        margin: 20px 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-sizing: border-box;
    }
}
