.form-container {
    max-width: 450px;
    background: #fff;
    border-radius: 10px;
}

.form-title {
    font-family: "UTM Nokia";
    font-weight: bold;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #190A24;
    margin-bottom: 12px;
}

.btn-submit {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
}

.btn-submit:hover {
    background-color: #4a148c;
}

.form-desc {
    font-size: 18px;
    color: #190A24;
    font-weight: 400;
    margin-bottom: 30px;
}

.btn-submit-cv {
    font-size: 16px;
    padding: 18px 20px;
    text-transform: uppercase;
}

.text-form-career {
    color: #190A24;
    font-size: 18px;
}

.input-group {
    position: relative;
}

.input-label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.input-label .required {
    color: red;
}

input:focus+.input-label,
input:not(:placeholder-shown)+.input-label,
textarea:not(:placeholder-shown)+.input-label {
    opacity: 0;
    /* biến mất khi focus hoặc có text */
}

.form-container textarea {
    resize: none;
}

.form-submit-cv {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.label-massage {
    top: 12px;
    transform: translateY(0);
}

.form-container .form-control {
    padding: 12px;
    border-radius: 8px;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: block;
}

.modal-dialog {
    max-width: 500px;
    margin: 5% auto;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 1rem;
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
}

.modal-body {
    padding: 30px;
}

.close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}