@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
.header-wrapper {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
}

.text-danger {
    display: block;
    margin-top: 5px;
    font-size: 0.875rem;
    color: #dc3545;
    font-weight: 500;
}

/* Optionally, add a red border to input if error exists */
input:invalid, .file-input:invalid {
    border: 1px solid #dc3545;
}
.career-wrapper {
    width: 100%;
    height: 100%;
}
.career-wrapper .career-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    column-gap: 94px;
    padding: 180px 120px;
    background: #E1E8E8;
    margin-top: 113px;
}
#uploadWrapper {
    margin-top: 24px;
}
.success-message {
    position: absolute;
    top: 135px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px 35px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    right: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s ease;
}

.success-message .close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    color: #155724;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


.career-wrapper .career-banner > div {
    width: calc(100% / 2 - 80px);
}
.career-wrapper .career-banner  .text-content {}
.career-wrapper .career-banner  .text-content h1 {
    font-family: Matura MT Script Capitals;
    font-weight: 400;
    font-size: 48px;
    line-height: 110.00000000000001%;
    color: #C50009;
    margin-bottom: 20px;
}
.career-wrapper .career-banner  .text-content p {
    max-width: 586px;
    font-family: Aeroport;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #3F3A49;
    margin-bottom: 40px;
}
.career-wrapper .career-banner  .text-content a {
    display: inline-block;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    background: #C50009;
    text-decoration: none;
}
.career-wrapper .career-banner  .img-content {}
.career-wrapper .career-banner  .img-content img  {
    width: 100%;
    max-width: 520px;
}
.join-team-content {
    margin: 80px 0;
}
.join-team-content h1 {
    font-family: Matura MT Script Capitals;
    font-weight: 400;
    font-size: 48px;
    line-height: 110.00000000000001%;
    color: #C50009;
    margin-bottom: 20px;
    text-align: center;
}
.join-team-content form > div {
    margin-bottom: 24px;
}
.join-team-content form {
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
.join-team-content form .first-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.join-team-content form .first-container > div:first-child  {
    margin-right: 20px;
}
.join-team-content form .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.join-team-content form  label {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #3F3A49;
    margin-bottom: 8px;
}
.join-team-content form input {
    width: 100%;
    padding: 24px 20px;
    border-radius: 12px;
    background: #F4F6F6;
    outline: 0;
    border: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #3F3A49;
}
.join-team-content form .first-container input::placeholder {
    color: #3F3A49;
}
.join-team-content form .btn-content {
    display: flex;
    justify-content: center;
}
.join-team-content form .btn-content button {
    padding: 11px 24px;
    border-radius: 12px;
    background: #C50009;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    border: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-team-content form .btn-content button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.join-team-content form .btn-content button:disabled:hover {
    background: #ccc;
    transform: none;
}
.select-container {
    position: relative;
    width: 100%;
}
.select-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #3F3A49;
    font-size: 14px;
}
.custom-select {
    position: relative;
    width: 100%;
}
.select-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    border-radius: 12px;
    background-color: #F4F6F6;
    cursor: pointer;
    transition: all 0.2s ease;
}
.selected-value {
    color: #3F3A49;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}
.arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}
.arrow.open {
    transform: rotate(-135deg);
}
.options-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.options-container.open {
    max-height: 240px;
    overflow-y: auto;
}
.option {
    padding: 24px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #cccc;
}
.option:last-child {
    border-bottom: none;
}
.option.selected {
    background-color: #F4F6F6;
}
.upload-area {
    border: 2px dashed #E5E5E5;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #FAFAFA;
}

.upload-area.dragover {
    border-color: #C50009;
    background-color: #f8f9fa;
}

.upload-area.file-uploaded {
    background-color: #e8f5e8;
    border-color: #4caf50;
}

.upload-area.uploading {
    cursor: not-allowed;
    opacity: 0.7;
}
.upload-icon {
    width: 24px;
    height: 24px;
    margin: 0 auto 8px;
}
.upload-icon svg {
    width: 24px;
    height: 24px;
}
.upload-text {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #0C1523;
}
.upload-subtext {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    color: #0C1523;
}
.file-types {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    color: #0C1523;
}
.file-input {
    display: none;
}
.file-button {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    background-color: #C50009;
    color: #fff;
    line-height: 100%;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}
.file-info {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    color: #0C1523;
    display: none;
}
.file-info.show {
    display: block;
}
.file-name {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    color: #0C1523;
}
.file-size {
    color: #888;
}
.remove-file {
    color: #C50009;
    cursor: pointer;
    margin-left: 8px;
    font-weight: 500;
}
.file-uploaded {
    background-color: #e8f5e8;
    border-color: #4caf50;
}
.file-uploaded .upload-icon {
    background-color: #d4edda;
}
.file-uploaded .upload-icon svg {
    fill: #4caf50;
}

.upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    font-family: "Inter", sans-serif;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
    box-shadow: 0 1px 2px 0 #00000014;
}

.file-item.error {
    border: 1px solid #e53935;
    background: #fff5f5;
}

.file-left {
    display: flex;
}

.file-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.file-item.error .file-icon {
    background: #e53935;
    color: #fff;
}

.file-info {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.file-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    margin: 0;
    color: #3F3A49;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.file-size {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #3F3A49;
}

.file-error {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #E02424;
}

.progress-container {
    width: 100%;
    margin-top: 16px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    border-radius: 8px;
    background: #E5E5E5;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0;
    background: #1C64F2;
    transition: width 0.3s ease;
}

.file-actions {
    display: flex;
    align-items: center;
}
.file-actions button {
    outline: none;
    border: 0;
    background: 0;
}
.file-actions button.retry {
    margin-right: 16px;
}

@media (max-width: 1280px) {
    .career-wrapper .career-banner {
        margin-top: 95px;
    }
    .career-wrapper {
        width: 100%;
        height: 100%;

    }
    .career-wrapper .career-banner {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        column-gap: 94px;
        padding: 90px 60px;
    }
    .career-wrapper .career-banner > div {
        width: calc(100% / 2 - 80px);
    }
}

@media (max-width: 1024px) {
    .career-wrapper {
        width: 100%;
        height: 100%;
    }
    .career-wrapper .career-banner {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        column-gap: 94px;
        padding: 40px 30px;
    }
    .career-wrapper .career-banner > div {
        width: calc(100% / 2 - 40px);
    }
}

@media (max-width: 769px) {
    .file-name {
        max-width: 142px;
        white-space: nowrap;
    }
    .career-wrapper {
        width: 100%;
        height: 100%;
    }
    .career-wrapper .career-banner {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100%;
        column-gap: unset;
        padding: 80px 16px;
        margin-top: 76px;
    }
    .career-wrapper .career-banner > div {
        width: 100% ;
    }

    .career-wrapper .career-banner  .text-content {
        margin-bottom: 40px;
    }
    .career-wrapper .career-banner  .text-content p {
        font-family: Aeroport;
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;
        color: #3F3A49;
        margin-bottom: 40px;
    }
    .career-wrapper .career-banner  .text-content a {
        width: 100%;
        display: inline-block;
        padding: 11px 24px;
        border-radius: 8px;
        font-weight: 700;
        text-align: center;
        color: #FFFFFF;
        background: #C50009;
        text-decoration: navajowhite;
        font-family: Aeroport;
        font-size: 18px;
        line-height: 100%;
    }
    .career-wrapper .career-banner  .img-content {}
    .career-wrapper .career-banner  .img-content img  {
        width: 100%;
        max-width: 100%;
    }

    .join-team-content form .first-container {
        flex-direction: column;
    }
    .join-team-content form .first-container > div:first-child  {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .join-team-content form .first-container > div:last-child  {
        margin-left: 0;
    }
    .join-team-content form .first-container > div:last-child  {
        margin-left: 0;
    }
    .join-team-content form .btn-content button {
        width: 100%;
    }
}

@media (max-width: 573px) {
    .career-wrapper .career-banner {
        margin-top: 72px;
    }
}



