/* Personal Details Tab Styles */

.tab-panel-title {
    color: #0B0427;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .tab-panel-title {
        font-size: 22px;
        font-weight: 600;
        line-height: 20px;
        margin-bottom: 12px;
    }

    h2.tab-panel-title {
        padding: 0;
    }
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
}

@media (max-width: 768px) {
    .form-container {
        gap: 12px;
    }
}

.form-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.inputs-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    gap: 0 40px;
}

.inputs-container .input-container {
    max-width: 420px;
    width: 100%;
}

.form-footer {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.submit-button {
    display: flex;
    width: 200px;
    height: 50px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    border: 2px solid var(--ffffff, #FFF);
    background: var(--LEADBLUE, #2020B3);
    box-shadow: 0 2.286px 7.429px 0 rgba(0, 0, 0, 0.16);
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.286px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background: #1a1a99;
}

@media (max-width: 768px) {
    .submit-button {
        width: 100%;
    }
}

