:root {
    --base-color: #007eb2;
  }

.form-headers-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.form-header {
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-header:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.form-header.active {
    background-color: var(--base-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: #fff !important;
}

.form-header.active .section-title__tagline {
    color: #fff !important;
}

.section-title__tagline {
    font-weight: 600;
}

.title-two-dots {
    width: 5px;
    height: 14px;
    -webkit-mask-image: url("../images/shapes/section-title-shape.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    background-color: #007eb2;
    mask-image: url("../images/shapes/section-title-shape.png");
    mask-repeat: no-repeat;
    mask-size: cover;
}

.ttd-text {
    padding-left: 10px;
}

.login-page
{
    height: calc(90vh - 42px);
    width: 95%;
    display: flex;
    margin: 5vh auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.login-left-area
{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.login-right-area
{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.login-logo
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.login-logo img
{
    width: 30%;
}

.login-text
{
    width: calc(100% - 40px);
    text-align: center;
    font-size: 25px;
    padding: 0 20px;
    color: #fff;
}

.login-form
{
    width: 70%;
    height: fit-content;
    margin-top: 50px;
}

.register-form
{
    width: calc(70% + 40px);
    height: fit-content;
    margin-top: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 20px;
    max-height: 60%;
}

.lgn-btns
{
    width: 70%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.lgn-btns .form-header
{
    width: fit-content !important;
    flex: none !important;
    white-space: nowrap !important;
    padding: 10px 15px !important;
    margin: 0 !important;
}

.lgn-btns .section-title__tagline
{
    padding: 0 !important;
}

.lang-link:hover
{
    color: #fff !important;
}

.lang-link
{
    transition: all 0.2s ease;
}

.login-img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.kvkk-area
{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.kvkk-area input
{
    width: 15px;
    height: 15px;
    margin: 0 !important;
}

.kvkk-area label
{
    font-size: 14px;
    margin: 0 !important;
}

.kvkk-area a
{
    color: #007eb2;
    text-decoration: underline;
}

.fp-card
{
    width: 40%;
    min-width: 300px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fp-card p
{
    font-size: 1em;
}

@media (max-width: 450px)
{

    .mbl-ph-20
    {
        padding: 0 20px;
    }
}

@media (max-width: 992px)
{

    .main-header__top-address li+li
    {
        margin: 0 !important;
    }
    .login-page
    {
        height: fit-content;
    }
    .login-left-area
    {
        width: 100%;
        height: auto;
        aspect-ratio: 2/1;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .login-img
    {
        border-bottom-left-radius: 0;
        border-top-right-radius: 20px;
    }
    .login-right-area
    {
        width: 100%;
        height: fit-content;
        padding: 30px 0;
    }
}

@media (max-width: 560px)
{
    .login-left-area
    {
        aspect-ratio: 3/2;
    }

    .mbl-gufd
    {
        display: block !important;
        padding: 15px 30px !important;
        height: auto !important;
    }

    .kvkk-area label
    {
        line-height: 19px !important;
    }
}