.service_form form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    height: max-content;
    overflow-y: auto;
}

.input {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input label {
    color: #5e5e5e;
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height);
    margin-bottom: 10px;
}


label {
    display: inline-block;
}

.input input {
    padding: 14px 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    background: #f0f0f0;
}

.input input {
    padding: 14px 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    background: #f0f0f0;
}

.file_wrapper {
    width: 100%;
}

.file_wrapper_title {
    color: #5e5e5e;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: var(--line-height);
    margin-bottom: 12px;
}

.cv-upload {
    border-radius: 5px;
    background: #f3f3f3;
    padding: 27px;
    position: relative;
    width: 100%;
    cursor: pointer;
}

label {
    display: inline-block;
}

.cv-upload input[type="file"] {
    display: none;
}

.cv-upload .file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.cv-upload .file-info span {
    font-size: 14px;
    color: #333;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

.remove-button {
    background-color: #e53935;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: var(--line-height);
}

.cv-upload::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../../assets/images/svg/file_icon.svg) no-repeat center center / cover;
    width: 20px;
    height: 25px;
}



.input textarea {
    /* resize: none; */
    height: 154px;
    padding: 10px 8px;
    outline: none;
    border: none;
    border-radius: 5px;
    background: #f3f3f3;
    font-family: var(--font-family);
    font-size: 14px;
    border: 1px solid transparent;
    transition: border 0.3s;
}

.submit_btn {
    width: fit-content;
    display: inline-flex;
    padding: 14px 40px;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    border-radius: 5px;
    background: #ef8c61;
    color: #fff;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-decoration: none;
    transition: all 0.3s;
}



.input label {
    color: #5e5e5e;
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height);
}

.custom_form {
    margin-bottom: 30px;
}


.action_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    width: 320px;
    background: #fff;
    border-radius: 5px;
    z-index: 10000;
    display: none;
}

.close_popup {
    position: absolute;
    width: 16px;
    height: 12px;
    border-radius: 5px;
    background: transparent;
    top: 30px;
    right: 40px;
    cursor: pointer;
}

.close_popup img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.action {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action_text p {
    color: #696969;
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height);
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.no-scroll {
    overflow: hidden;
}

.action_img {
    padding: 3px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-bg-color);
    border-radius: 50%;
}


.close_popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 10;
}

/* X işarəsi */
.close_popup::before,
.close_popup::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #333;
    transform-origin: center;
}

/* \ */
.close_popup::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* / */
.close_popup::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* hover effekti */
.close_popup:hover::before,
.close_popup:hover::after {
    background-color: #e63946;
}

.overlay {
    display: block !important;
}









.file_wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-info.dynamic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background-color: #f9f9f9;
}

.file-info.dynamic .cvFileName {
    flex: 1;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-info.dynamic .remove-button {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}

.file-info.dynamic .remove-button:hover {
    background: #dc2626;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    background: #f0f0f0;
    padding: 14px 20px;
}

.custom-select.open .custom-options {
    display: block;
}

.custom-options {
    display: none;
    position: absolute;
    z-index: 1000;
    border-radius: 5px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    width: 100%;
    list-style: none;
    margin-top: 5px;
    padding: 0;
}

.custom-option {
    padding: 14px 20px;
    color: #5e5e5e;
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height);
    cursor: pointer;
}

.hidden-select {
    display: none;
}