﻿/* Stiluri generale */
* {
    box-sizing: border-box; /* Aplicat global pentru a gestiona padding-ul și lățimea */
}

.footer {
    display: flex;
    padding: 20px 20px 20px 40px;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-7xl, 64px);
    align-self: stretch;
    border-top: 1px solid var(--Colors-Border-border-disabled_subtle, #EAECF0);
    background: var(--Colors-Background-bg-primary, #FFF);
    margin-bottom: -50px;
}

    .footer a {
        margin-right: 15px;
        text-decoration: none;
        color: #2c365a;
    }

        .footer a:last-child {
            margin-right: 0;
        }

.footer-right {
    white-space: nowrap;
}

validation-summary-errors {
    list-style: none;
    color: red;
}

.date-input-wrapper {
    position: relative;
    display: flex;
    border: none;
    overflow: hidden;
    padding-top: 20p;
}

.validation-summary-errors ul {
    list-style-type: none;
    color: red;
}

.calendar-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: none;
    border: none;
    padding: 0 10px 0px;
    padding-top: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6D7584;
}

    .calendar-button:hover {
        color: #333;
    }

/* Hide the datepicker button that gets auto-generated */
.ui-datepicker-trigger {
    display: none;
}

a {
    text-decoration: none;
}

.circle {
    width: 60px;
    height: 60px;
    background-color: #0088FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: auto;
}

.SuccessCircle {
    width: 48px;
    height: 48px;
    background-color: #17B26A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: auto;
    margin-top: 10%;
}

.ErrorCircle {
    width: 48px;
    height: 48px;
    background-color: #F04438;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: auto;
    margin-top: 10%;
}

html, body {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    background-color: #f9f9f9;
}

.otp-input {
    width: 40px;
    height: 40px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-container .otp-input {
    height: 10%;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #F9FAFB;
    border-radius: 8px;
    overflow: hidden;
    border: 1px #D0D5DD solid;
    justify-content: flex-start;
    gap: 8px;
    width: 13%;
    color: black;
    font-size: 24px;
    font-family: Noto Sans;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
}

.verification-code-inputs {
    display: flex;
    justify-content: center;
    /* gap: 10px; */
}

.OTPCODE {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.OtpHeader {
    padding-left: 50px;
    text-align: left;
}

.verification-code-inputs input {
    border: 1px solid #ccc;
    width: auto;
    /* height: auto; */
    text-align: center;
    margin: 0 5px;
    /* border-color: #08F; */
    color: #08F;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.96px;
    font-family: 'Noto Sans';
}

.verification-code-inputs :focus {
    outline: 2px solid #08F;
}

.verify-btn {
    border-radius: 6px;
    background: var(--Light-Blue-500, #08F);
    width: 90%;
    height: 44px;
    /* padding: 14px 24px; */
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--White, #FFF);
    font-family: "Noto Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    border: none;
}

    .verify-btn:hover {
        background-color: darkblue;
    }

.verification-code-inputs {
    padding-bottom: 20px;
    text-decoration-color: #08F;
    padding-top: 10px;
    /* color: #08f; */
    height:;
}

.otp-input:invalid {
    border: 2px solid #ccc;
}

.otp-input:valid {
    border: 2px solid #08F;
    color: #08F;
}

.centered-label {
    padding-bottom: 20px;
    font-size: inherit;
    text-align: center;
}
/* Header */
.header-container {
    width: 100%;
    border-top: 6px solid #08F;
    box-shadow: 0px 1px 3px 0px rgba(18, 18, 23, 0.10), 0px 1px 2px 0px rgba(18, 18, 23, 0.06);
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 130px;
    padding-right: 150px;
}

/* Logo */
.logo {
    width: 20vw;
    max-width: 200px;
    height: auto;
}

/* Container principal */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 5%;
    width: 100%;
}

/* Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 900px;
    gap: 10px;
    background: #F2F4F7;
    border-radius: 16px;
    padding: 20px;
}

/* Banner */
.header-banner {
    width: calc(100% + 40px); /* Compensează padding-ul de 20px de pe ambele părți */
    margin-left: -20px; /* Mută banner-ul la stânga pentru a anula padding-ul */
    margin-right: -20px; /* Mută banner-ul la dreapta pentru a anula padding-ul */
    padding: 0;
    position: relative; /* Necesar pentru poziționarea absolută a textului */
}

.banner {
    width: 100%;
    height: auto;
    display: block;
}

.banner-text {
    position: absolute;
    top: 40%; /* Centrează vertical */
    left: 30%; /* Centrează orizontal */
    transform: translate(-50%, -50%); /* Ajustează pentru centrare exactă */
    width: 80%; /* Lățime relativă */
    max-width: 390px;
    font-size: 32px;
    color: black;
    text-align: left; /* Centrează textul */
    /* padding: 15px; */
}

    .banner-text strong {
        font-weight: bold;
    }

/* Text descriptiv */
.text {
    width: 100%;
    /* padding: 20px 5%; */
    font-size: 16px;
    max-width: 800px;
    color: #344054;
    line-height: 1.5;
}

/* Acordeoane */
.toogles {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.accordion {
    width: 100%;
    padding: 1px;
    padding-left: 35px;
}

.accordion-button:not(.collapsed) {
    color: black;
    background: none;
    box-shadow: none;
    font-size: 16px;
}

.accordion-button:after {
    content: none;
}

.accordion-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    font-size: 1.8vw;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    text-align: left;
    width: 100%;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #A0A0A0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #A0A0A0;
    transition: all 0.3s ease-in-out;
    padding: 10px;
    /* margin-bottom: 10px; */
}

    .accordion-icon::before {
        content: "+";
    }


.accordion-button.active .accordion-icon::before {
    content: "−";
}

.accordion-content {
    padding: 10px 20px;
    font-size: inherit;
    color: #535862;
    display: none;
}

    .accordion-content.open {
        display: block;
    }

/* Formular */
.form {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.success-btn {
    margin-top: 40px;
    border-radius: 6px;
    background: var(--Light-Blue-500, #08F);
    width: 70%;
    height: 44px;
    /* padding: 14px 24px; */
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    color: var(--White, #FFF);
    font-family: "Noto Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    max-width: 328px;
}

.svg-success {
    margin-right: 10px;
    margin-top: -1px
}

.form-title {
    font-size: 36px;
    color: #181D27;
    font-weight: 600;
    line-height: 44px;
    padding-top: 20px;
}

.form p {
    font-size: 18px;
    color: #344054;
    padding: 15px 0;
    line-height: 28px;
}

/* Inputuri și label-uri */
label {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
    color: #344054;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 15px;
}

    .checkbox-container input {
        width: 20px;
        height: 20px;
        border-radius: 6px;
        border: 1px solid #D0D5DD;
    }

    .checkbox-container label {
        font-size: 16px;
        margin: 0;
    }

/* Butoane */
.buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.accept-btn, .refuse-btn {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.accept-btn {
    background-color: #007bff;
    color: white;
}

    .accept-btn:hover {
        background-color: darkblue;
    }

.refuse-btn {
    background-color: #007bff;
    color: white;
}

    .refuse-btn:hover {
        background-color: darkblue;
    }
/* Language Selector */
.custom-dropdown {
    position: relative;
    width: 10%;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #D5D7DA;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    gap: 4px;
}

.flag-icon {
    width: 20px;
    height: auto;
    padding:;
}

.dropdown-toggle span {
    font-size: 14px;
    color: #414651;
}

.dropdown-arrow {
    width: 20px;
    height: 20px;
    background-size: contain;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 10px;
    border: 1px solid #D5D7DA;
    border-radius: 8px;
    background: white;
    z-index: 1000;
    min-width: 6.5rem;
    gap:;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
}

    .dropdown-item span {
        font-size: 14px;
    }

/* Alert */
.alert-container {
    width: 100%;
    padding: 8px;
    background: #F7F7F8;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    margin-top: 30px;
    text-align: left;
}

.alert-border {
    width: 2px;
    background: #0088FF;
}

.alert-icon img {
    width: 24px;
}

.alert-content {
    font-size: 14px;
    color: #D92D20;
}

.resetare-parola {
    align-self: stretch;
    text-align: center;
    color: #101828;
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    line-height: 32px;
    word-wrap: break-word;
}

.resetare-instructiuni {
    margin-bottom: 35px;
    text-align: center;
    color: #344054;
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.errorr_buttons {
    display: flex;
    justify-content: center;
}

.continue-button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .continue-button:hover {
        background-color: #0056b3;
    }
/* Ajustări pentru dispozitive mobile */
@media (max-width: 768px) {
    .header {
        padding: 15px 3%;
        width: 94%;
    }

    .OtpHeader {
        padding: 10px;
    }

    .form-container {
        padding: 0;
        align-content: center;
    }

    .content {
        width: 100%;
        padding: 20px;
        gap: 10px;
    }

    .banner-text {
        font-size: 3vw; /* Mărime mai mare pentru vizibilitate */
        width: 90%; /* Ocupă mai mult spațiu */
        max-width: 250px;
    }

    .text {
        font-size: 3vw;
        padding: 10px 3%;
    }

    .accordion {
        padding: 15px;
    }

    .accordion-button {
        font-size: 3vw;
        padding: 8px;
    }

    .accordion-content {
        font-size: 2.5vw;
        padding: 8px 15px;
    }

    .form {
        padding: 30px;
        width: 94%;
        margin: 20px auto;
    }

    .form-title {
        font-size: 28px;
        line-height: 36px;
    }

    .form p {
        font-size: 16px;
        line-height: 24px;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .accept-btn, .refuse-btn {
        width: 100%;
    }

    .success-btn {
        font-size: 12px;
        color: white;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 2%;
        width: 96%;
    }

    .footer {
        display: flex;
        padding-top: 10;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        align-self: stretch;
        border-top: 1px solid var(--Colors-Border-border-disabled_subtle, #EAECF0);
        background: var(--Colors-Background-bg-primary, #FFF);
        margin-bottom: -50px;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-right {
        padding-bottom: 15px
    }

    .OtpHeader {
        padding: 10px;
    }

    .logo {
        width: 25vw;
    }

    .form-container {
        padding: 0;
    }

    .content {
        width: 100%;
        padding: 20px;
        gap: 15px;
    }

    .banner-text {
        top: 40%;
        left: 32%;
        font-size: 14px;
        width: 95%;
        padding: 10px;
        max-width: 200px;
    }

    .text {
        font-size: 4vw;
        padding: 8px 2%;
    }

    .accordion {
        padding: 2px;
        padding-left: 15px;
    }

    .accordion-button {
        font-size: 4vw;
        padding: 1px;
    }

    .accordion-content {
        font-size: 3.5vw;
        padding: 6px 10px;
    }

    .form {
        padding: 20px;
        width: 96%;
    }

    .form-title {
        font-size: 24px;
        line-height: 32px;
    }

    .form p {
        font-size: 14px;
        line-height: 22px;
    }

    label {
        font-size: 12px;
    }

    input[type="text"] {
        font-size: 14px;
        padding: 6px;
    }

    .checkbox-container label {
        font-size: 14px;
    }

    .accept-btn, .refuse-btn {
        font-size: 13px;
        padding: 8px;
    }

}
button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
