.login-reg-wrapper {
    display: flex;
    width: 443px;
    padding: var(--padding-top-bottom, 40px) var(--padding-left-right, 56px);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: var(--border-radius-block, 16px);
    border: 1px solid var(--block-border, #EEE);
    background: var(--white, #FFF);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    margin: auto;
}
.center-wrap {
    height: calc(100vh - 128px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 48px;
}
.login-reg-wrapper .title {
    color: #363D4D;
    font-family: Fustat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.login-reg-wrapper .title.text-center {
    text-align: center;
    width: 100%;
}
.input-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}
.input-wrap input {
    padding: 13px 18px;
    outline: none;
    width: 100%;
    border-radius: var(--border-radius-btn, 8px);
    border: 1px solid var(--grey-line, #E1E1E1);
    background: #FFF;
    font-family: Fustat;
    font-weight: 500;
    font-size: 14px;
    color: rgba(20, 20, 20, 1);
    transition: 0.2s all ease;
}
.input-wrap input::placeholder {
    font-family: Fustat;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: rgba(111, 111, 115, 1);
}
.input-wrap label {
    color: rgba(54, 61, 77, 1);
    font-family: Fustat;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    pointer-events: none;
    transition: 0.25s ease;
    margin-bottom: 10px;
    display: block;
}

/* Focus border */
.input-wrap input:focus {
    border-color: rgba(45, 94, 238, 1);
}
.login-reg-form {
    width: 100%;
}
.input-wrap .toggle-password {
    position: absolute;
    right: 15px;
    top: 35px;
    height: 20px;
    width: 20px;
    background-image: url('/assets/icons/eye-closed.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: 0.2s;
}
.input-wrap .toggle-password.show {
    background-image: url('/assets/icons/eye-show.svg');
}
.login-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.login-bottom a {
    font-family: Fustat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: rgba(111, 111, 115, 1);
    text-decoration: none;
    transition: 0.2s;
}
.login-bottom a:hover{
    color: rgba(45, 94, 238, 1);
}
.social-logins-wrapper a.social-login {
    transition: 0.2s;
}
.social-logins-wrapper a.social-login:hover {
    border: 1px solid rgba(45, 94, 238, 1);
}
.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.title-row .verification-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Fustat;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
    color: #363D4D;
}
.personal-info-row {
    display: flex;
    gap: 16px;
}
.personal-info-row .personal-info-box, .personal-info-row .password-change-box{
    border-radius: var(--border-radius-block, 16px);
    border: 1px solid var(--block-border, #EEE);
    background: var(--white, #FFF);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    padding: var(--padding-top-bottom, 40px) var(--padding-left-right, 56px);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.two-cols-inputs {
    display: flex;
    gap: 12px;
}
.phone-wrap .phone-input {
    border-radius: 0px 10px 10px 0px;
    margin-left: -1px;
}
.phone-wrap .phone-input:focus {
    z-index: 10;
}
.personal-info-row form input[type="submit"] {
    margin-top: 14px;
}
input[type="submit"]:disabled {
    background-color: rgba(246, 246, 246, 1);
    color: rgba(159, 159, 159, 1);
    border: 2px solid rgba(246, 246, 246, 1);
}
input[type="submit"]:disabled:hover {
    background-color: rgba(246, 246, 246, 1);
    color: rgba(159, 159, 159, 1);
    border: 2px solid rgba(246, 246, 246, 1);
}
.certificates-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
}
.certificates-wrap .title-with-btn{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}
.certificates-wrap .title-with-btn .add-new-cert{
    width: 40px;
    height: 40px;
    background-color: rgba(45, 94, 238, 1);
    border-radius: 8px;
    background-image: url('/assets/icons/button-plus.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    border: 2px solid #2d5eee;
}
.certificates-wrap .title-with-btn .add-new-cert:hover{
    background-color: #ffffff;
    background-image: url('/assets/icons/blue-plus.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
}
.certificates-wrap .certificates-list .certificate {
    border-radius: var(--border-radius-block, 16px);
    border: 1px solid var(--block-border, #EEE);
    background: var(--white, #FFF);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    padding: var(--padding-top-bottom, 40px) var(--padding-left-right, 56px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.certificates-wrap .certificates-list .certificate.edit {
    border: 1px solid rgba(45, 94, 238, 0.35);
    box-shadow: 0 5px 15px 0 rgba(29, 57, 139, 0.1);
}
.certificates-wrap .certificates-list .certificate .input-wrap.number-input {
    max-width: 274px;
}
.input-wrap input:disabled {
    background: rgba(249, 249, 249, 1);
}
.certificates-wrap .certificates-list .certificate .input-wrap.date-input {
    max-width: 168px;
}
.certificates-wrap .certificates-list .certificate .cert-inputs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}
.cert-actions .cert-edit{
    background-image: url('/assets/icons/cert-edit.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
    display: block;
}
.cert-actions .cert-delete{
    background-image: url('/assets/icons/cert-trash.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
    display: block;
}
.cert-actions .cert-delete:hover{
    background-image: url('/assets/icons/cert-trash-blue.svg');
}
.cert-actions .cert-edit:hover{
    background-image: url('/assets/icons/cert-edit-blue.svg');
}
.cert-actions .cert-global-actions {
    display: flex;
    gap: 14px;
}
.certificates-wrap .certificates-list .certificate.edit .cert-actions .cert-edit{
    opacity: 0.3;
}
.input-wrap.date-input input[type="date"]::-webkit-inner-spin-button,
.input-wrap.date-input input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
.input-wrap.date-input input {
    background-image: url('/assets/icons/calendar-input.svg');
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: right 16px center;
}
.cert-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}
.cert-actions .edit-actions{
    display: flex;
    align-items: center;
    gap: 20px;
}
.cert-actions .edit-actions .cert-cancel, .cert-actions .edit-actions .cert-save {
    gap: 8px;
    display: flex;
    border-radius: 6px;
    padding: 6px 8px;
    font-family: Fustat;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
}
.cert-actions .edit-actions .cert-cancel:hover, .cert-actions .edit-actions .cert-save:hover {
    background: #2d5eee14;
}
.account-deletion-notice {
    gap: 12px;
    display: flex;
    align-items: center;
    font-family: Fustat;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;

}
.person-info-section {
    padding-bottom: 120px;
}
.file-input-container {
    max-width: 240px;
}

.file-input-container .label {
    display: block;
    margin-bottom: 10px;
    font-family: Fustat;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    color: #363D4D;
}

.file-input-container .file-input-wrapper {
    position: relative;
    width: 100%;
}

/* Hide the default file input */
.file-input-container .file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Custom styled button */
.file-input-container .file-input-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0px;
    background-color: transparent;
    color: #2D5EEE;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: Fustat;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
}

/* Selected file display */
.file-input-container .selected-file {
    margin-top: 12px;
    display: none;
}

.file-input-container .selected-file.show {
    display: flex;
}

.file-input-container .file-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 14px 14px 40px;
    background-color: #EAEFFE;
    border-radius: 8px;
    font-family: Fustat;
    font-weight: 600;
    font-size: 11px;
    line-height: 100%;
    background-image: url('/assets/icons/attach_v2.svg');
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: left 15px center;
    color: #2D5EEE;
}

.file-input-container .file-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.file-input-container .file-name {
    color: #2563eb;
}

.file-input-container .remove-file {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #2563eb;
    transition: color 0.2s;
}

.file-input-container .remove-file:hover {
    color: #1d4ed8;
}

.file-input-container .remove-file svg {
    width: 16px;
    height: 16px;
}
.file-input-button.hidden {
    display: none;
}
    /* Make header relative */
.flatpickr-months {
    position: relative;
    display: flex;
    justify-content: center; /* center month/year */
    padding: 0 10px;
    padding-bottom: 10px;
}

/* Position both arrows in top right */
.flatpickr-prev-month,
.flatpickr-next-month {
    position: absolute;
    top: 10px;
}

/* First arrow */
.flatpickr-prev-month {
    right: 40px; /* space between arrows */
    left: unset !important;
}

/* Second arrow */
.flatpickr-next-month {
    right: 10px;
}

/* Optional: make arrows cleaner */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    width: 18px;
    height: 18px;
}
.flatpickr-calendar.open {
    display: inline-block !important;
    z-index: 99999 !important;
    padding: 32px 48px !important;
    border-radius: 16px !important;
    width: fit-content !important;
}
.flatpickr-calendar .numInputWrapper .arrowUp,
.flatpickr-calendar .numInputWrapper .arrowDown {
    display: none !important;
}
.flatpickr-calendar .flatpickr-current-month {
    display: flex !important;
    width: 100% !important;
    left: 0 !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 10px !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background-color: #fff;
    background-image: url('/assets/icons/month-arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 10px;
}
.flatpickr-calendar .numInputWrapper:hover {
    background-color: #fff !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: Fustat !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    line-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: #fff !important;
    background-image: url('/assets/icons/month-arrow-down.svg') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: 10px !important;
    padding-right: 15px !important;
}
.flatpickr-calendar .custom-year-select {
    border: 0;
    outline: 0;
    font-family: Fustat;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #9F9F9F;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url('/assets/icons/year-arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 10px;
    padding-right: 15px !important;
    cursor: pointer !important;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    height: 20px !important;
    padding: 5px !important;
}
.flatpickr-day {
    border-radius: 16px !important;
    font-family: Fustat !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}
.flatpickr-day.selected {
    background: #2D5EEE !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #fff !important;
    border-color: #2D5EEE !important;
}
.flatpickr-day:hover {
    cursor: pointer !important;
    outline: 0 !important;
    background: #EAEFFE !important;
    border-color: #EAEFFE !important;
    color: #2D5EEE !important;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
    right: 10px !important;
}
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
    opacity: 0.5;
}
.delete-acc {
    font-family: Fustat;
    font-weight: 600;
    font-size: 14px;
    color: #EB3831;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    width: fit-content;
    padding: 4px 10px;
}
.delete-acc:hover {
    background-color: #EB38311A;
    padding: 4px 10px;
    border-radius: 6px;
}
.free-trial-section {
    padding-bottom: 80px;
}
.free-trial-section .box-header .title {
    font-family: Fustat;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #363D4D;
    margin-top: 20px;
    margin-bottom: 8px;
}
.free-trial-section .box-header .desc {
    font-family: Fustat;
    font-weight: 500;
    font-size: 16px;
    color: #363D4D;
}
.free-trial-section .box-header .desc span{
    font-family: Fustat;
    font-weight: 700;
    font-size: 16px;
    color: #2D5EEE;
}
.free-trial-section .box-header ,.free-trial-section .box-input-wrap{
    margin-bottom: 40px;
}
.box-input-wrap .input-desc {
    font-family: Fustat;
    font-weight: 400;
    font-size: 13px;
    padding: 0 10px;
    color: #6F6F73;
}
.box-input-wrap.input-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}
.free-trial-section .plan-title {
    font-family: Fustat;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0%;
    text-align: center;
    color: #363D4D;
}
.free-trial-section .plan-box {
    padding: 24px 32px;
    background-color: #F9F9F9;
    width: fit-content;
    margin: auto;
    border-radius: 8px;
    border: 1px solid #E1E1E1;
    margin-top: 16px;
    margin-bottom: 16px;
}
.free-trial-section .plan-box .price {
    font-family: Fustat;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0%;
    text-align: center;
    color: #27C96A;
}
.free-trial-section .plan-box .storage {
    display: flex;
    gap: 6px;
    font-family: Fustat;
    font-weight: 800;
    font-size: 22px;
    color: #363D4D;
    align-items: center;
}
.free-trial-section .plan-box .storage img {
    margin-top: -2px;
}
.free-trial-section .addtitional-pricing{
    font-family: Fustat;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #363D4D;
}
.free-trial-section .free-trial-wrapper {
    max-width: 672px;
    margin: auto;
}
.free-trial-section .buttons-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}
.free-trial-section .buttons-wrap button{
    min-width: 215px;
    justify-content: center;
}
.edz-creation .edz-creation-wrapper {
    max-width: 902px;
    margin: auto;
}
.edz-creation .billing__title{
  text-align:center;
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  color:#1e293b;
}

.edz-creation .billing__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}

.edz-creation .plan{
  cursor:pointer;
  display:block;
}

.edz-creation .plan__radio{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.edz-creation .plan__card{
    position:relative;
    display:block;
    background:#ffffff;
    border:1px solid #E1E1E1;
    border-radius:10px;
    padding:20px 24px 24px 50px;
    transition:all .15s ease;
    min-height:84px;
}
.edz-creation .plan__dot{
    position: absolute;
    left: 24px;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: all .2s ease;
    border: 1px solid #E1E1E1;
}
.edz-creation .plan__top{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
}
.edz-creation .plan__term{
    font-family: Fustat;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0%;
    text-align: center;
    color: #363D4D;
}
.edz-creation .plan__per{
    font-family: Fustat;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0%;
    color: #363D4D;
}
.edz-creation .plan__per-muted{
    font-family: Fustat;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #6F6F73;
    margin-left: 4px;
}
.edz-creation .plan__bottom{
  margin-top:8px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.edz-creation .plan__price{
    font-family: Fustat;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #363D4D;
}
.edz-creation .plan__old{
    color: #27C96A;
    font-family: Fustat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: line-through;
}
.edz-creation .plan__badge{
    margin-left: auto;
    background: #27C96A;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: Fustat;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

/* SELECTED STATE */
.edz-creation .plan__radio:checked + .plan__card{
    border-color:#2D5EEE;
}
/* selected state */
.edz-creation .plan__radio:checked + .plan__card .plan__dot{
    background:#2D5EEE; /* blue circle */
    border: 1px solid #2D5EEE;
}
/* white inner circle */
.edz-creation .plan__radio:checked + .plan__card .plan__dot::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:6px;
    height:6px;
    background:#ffffff;
    border-radius:50%;
    transform:translate(-50%, -50%);
}

/* focus */
.edz-creation .plan__radio:focus-visible + .plan__card{
    outline:3px solid rgba(47,107,255,0.25);
    outline-offset:2px;
}
.edz-creation .company-row .agree{
    justify-content: center;
}
.edz-creation .company-fields {
    transition: 0.3 s all ease-out;
}
.country-select .select2-container {
    width: 100% !important;
}
.country-select .select2-container .select2-selection--single {
    border-radius: 8px;
}
.edz-creation {
    padding-bottom: 80px;
}
.successful-creation {
    gap: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.successful-creation .success-btn {
    margin-top: 32px;
}
.successful-creation img {
    margin-bottom: 10px;
}
.change-payer .edz-creation-wrapper{
    max-width: 443px;
    margin: auto;
}
.change-payer {
    padding-bottom: 80px;
}
.change-payer-form .agree {
    margin-top: 0;
}
.change-payer-form input[type="submit"] {
    margin-top: 12px;
}
.owner-change form {
    width: 100%;
}
.owner-change-wrap .login-reg-wrapper {
    margin: 0;
}
.owner-change-wrap{
    flex-direction: column;
}
.owner-change-wrap .title {
    font-family: Fustat;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    color: #363D4D;
    margin-bottom: 30px;
}
.owner-change-wrap .desc {
    font-family: Fustat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #6F6F73;
    text-align: center;
    margin-bottom: 24px;
}
.owner-change-wrap h2{
    margin-top: 0;
}
.owner-change-wrap img {
    margin-bottom: 24px;
}
.duk .mob-sidebar {
    display: none;
}
.duk .close-sidebar {
    display: none;
}
.sidebar .contact-box .text{
    text-align: center;
}