html {
    font-size: 16px;
}

body {
    height: 100vh;
}

.landing-body input:not([type="checkbox"]):not([type="radio"]) {
    background: white;
}

.landing-body input:not([type="checkbox"]):not([type="radio"]):focus {
    background: white;
}

.landing-body #app {
    height: 100vh;
}

.bg-login {
    background-image: url('../images/auth/login.jpg');
    background-position: center;
    background-size: cover;
}

.bg-forgot-password {
    background-image: url('../images/auth/forgot-password.jpg');
    background-position: center;
    background-size: cover;
}

.bg-reset-password {
    background-image: url('../images/auth/reset-password.jpg');
    background-position: center;
    background-size: cover;
}

.bg-2fa {
    background-image: url('../images/auth/2fa.jpg');
    background-position: center;
    background-size: cover;
}

.bg-green-gradient {
    background-image: linear-gradient(270deg, #00DB00 0%, #7FFF7F 100%);
}

.h-1px {
    height: 1px;
}

.p-v-6 {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.p-l-4 {
    padding-left: 1rem;
}

.p-v-4 {
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.left-2 {
    left: 0.5rem;
}

.-top-2 {
    top: -0.5rem;
}

.p-h-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.uppercase {
    text-transform: uppercase;
}

.b-700 {
    font-weight: 700;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem;
}

.text-base {
    font-size: 1.0rem;
    line-height: 1.5rem;
}

.font-mont {
    font-family: "Montserrat", "ui-sans-serif", "system-ui", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.font-sans {
    font-family: "Open Sans", "ui-sans-serif", "system-ui", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}


.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.leading-6 {
    line-height: 1.5rem;
}

.bg-white {
    background-color: white;
}

.focus-green:focus {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border-width: 1px !important;
    border-color: rgb(0, 219, 0) !important;
    outline: none;
}

.border-2px {
    border-width: 2px;
}

.m-t-6 {
    margin-top: 1.5rem;
}

input::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;

}

input:checked {
    background-color: rgb(0, 219, 0) !important;
    border-color: rgb(0, 219, 0) !important;
}

.underline {
    text-decoration: underline;
}

.text-gray {
    color: rgb(75, 85, 99);
}

a:hover {
    color: rgb(0, 219, 0);
}

.m-l-1 {
    margin-left: 0.25rem;
}

.btn-green-gradient {
    background: linear-gradient(270deg, #00DB00 0%, #7FFF7F 100%);
    transition: background 0.3s ease;
}

.btn-green-gradient:hover {
    background: linear-gradient(270deg, #05FF05 0%, #A8FFA8 100%);
}

.btn-green-gradient:active {
    background: linear-gradient(270deg, #02B002 0%, #56FF56 100%);
    box-shadow: none;
}

.btn-green-gradient:focus {
    border: none !important;
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 0, 0.25);
}

.letter-spacing-widest {
    letter-spacing: .1em;
}

/* ========================================
   New Login Screen
   ======================================== */

.wave-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/login/wave.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 100;
    opacity: 1;
}


.auth-split-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.auth-left-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}


.auth-right-section-shadow {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background: linear-gradient(135deg, #57f3e5 0%, #2091c9 100%);
    -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 10;
    pointer-events: none;
    mask-image: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.20) 50%,
    rgba(0, 0, 0, 0.30) 65%,
    rgba(0, 0, 0, 0.40) 80%,
    rgba(0, 0, 0, 0.45) 100%
    );
    -webkit-mask-image: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.20) 50%,
    rgba(0, 0, 0, 0.30) 65%,
    rgba(0, 0, 0, 0.40) 80%,
    rgba(0, 0, 0, 0.45) 100%
    );
}


.auth-right-section-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    /*background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);*/
    background-color: #0099B3;
    z-index: 20;
    -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}


.auth-right-section-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 14rem;
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
}


.auth-form-container {
    width: 100%;
    max-width: 450px;
    padding: 2rem 0;
    padding-left: 1rem;
    position: relative;
    overflow: visible;
    z-index: 200;
}


.auth-form-container > * {
    position: relative;
    z-index: 1;
}


.auth-logo-container {
    text-align: right;
    margin-bottom: 2rem;
}

.auth-logo {
    max-width: 230px;
    height: 75px;
    filter: brightness(0) invert(1);
}

.auth-divider {
    height: 2px;
    margin: 2rem 0;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.9) 100%);
    width: 100%;
    max-width: 420px;
    margin-left: auto;
}


.auth-title-section {
    text-align: right;
    margin-bottom: 2rem;
}


.auth-subtitle-wrapper {
    position: relative;
    padding: 0.75rem 0;
    margin-bottom: 2.5rem;
    margin-left: -10rem;
    margin-right: -3rem;
}

.auth-subtitle-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -100vw;
    background: linear-gradient(to right, rgba(0, 40, 80, 0.0) 1%, rgba(0, 40, 80, 0.15) 8%, rgba(0, 40, 80, 0.35) 12%, rgba(0, 40, 80, 0.55) 20%, rgba(0, 40, 80, 0.60) 30%, rgba(0, 40, 80, 0.7) 100%);
    z-index: -1;
}

.auth-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    color: #ffffff;
    opacity: 1;
    margin: 0;
    padding-left: 10rem;
    padding-right: 3rem;
    letter-spacing: 0.05em;
    text-align: right;
    position: relative;
    z-index: 1;
}

.auth-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: 0.05em;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.auth-title-light {
    font-size: 2.5rem;
    font-weight: 400;
    display: block;
}

.auth-title-bold {
    font-size: 60px;
    font-weight: 700;
    display: block;
}


.auth-form {
    text-align: right;
}

.auth-input {
    width: 100%;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.auth-input:focus {
    outline: none;
    border-color: #00A1B4;
    box-shadow: 0 0 0 0.2rem rgba(0, 161, 180, 0.15);
}

.auth-input::placeholder {
    color: #999999;
    opacity: 0.7;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-checkbox {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    accent-color: #00DB00;
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0.25rem;
    position: relative;
}

.auth-checkbox:checked {
    background-color: #00DB00 !important;
    border-color: #00DB00;
}

.auth-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.auth-checkbox-label {
    font-size: 0.875rem;
    color: #ffffff;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.auth-forgot {
    flex-shrink: 0;
}

.auth-forgot-link {
    font-size: 0.875rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.auth-forgot-link:hover {
    color: #ffffff;
    opacity: 0.8;
}


.auth-submit-btn {
    width: 35%;
    min-width: 150px;
    padding: 0.875rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    background: #fca000;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-transform: uppercase;
    display: inline-block;
    opacity: 1;
    text-align: center;
}

.auth-submit-btn:hover {
    opacity: 0.85;
}

.auth-submit-btn:active {
    opacity: 0.75;
}

.auth-submit-btn:focus {
    outline: none;
    opacity: 0.9;
}

.auth-right-section-content .alert {
    border-radius: 0.375rem;
    font-size: 0.875rem;
}


.bg-login-split {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1200px) {
    .auth-subtitle {
        padding-left: 0;
        /* padding-right: 0;  */
        font-size: 18px;
    }
}


@media (max-width: 1024px) {
    .auth-submit-btn {
        padding-top: 9px;
        padding-bottom: 9px;
        width: 50%;
    }

    .auth-input {
        padding-top: 9px;
        padding-bottom: 9px;
    }


    .auth-split-container {
        display: block;
        position: relative;
        height: 100vh;
    }

    .auth-left-section {
        position: absolute;
        top: 55vh;
        left: 0;
        width: 100%;
        height: 50vh;
        z-index: 1;
        background-position: top center !important;
    }


    .auth-right-section-shadow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 70vh;
        z-index: 10;
        background: linear-gradient(315deg, #57f3e5 0%, #2091c9 100%);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
        mask-image: linear-gradient(to left,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.20) 50%,
        rgba(0, 0, 0, 0.30) 65%,
        rgba(0, 0, 0, 0.40) 80%,
        rgba(0, 0, 0, 0.45) 100%
        );
        -webkit-mask-image: linear-gradient(to left,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.20) 50%,
        rgba(0, 0, 0, 0.30) 65%,
        rgba(0, 0, 0, 0.40) 80%,
        rgba(0, 0, 0, 0.45) 100%
        );
    }

    /* Background üstte - sadece alt kenar eğimli */
    .auth-right-section-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 65vh;
        z-index: 20;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    }

    .auth-right-section-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 50vh;
        padding: 2rem;
        justify-content: center;
        z-index: 200;
        overflow-y: auto;
    }

    .auth-form-container {
        max-width: 350px;
    }

    .auth-logo-container,
    .auth-title-section,
    .auth-form {
        text-align: right;
    }

    .auth-title {
        align-items: flex-end;
    }

    .auth-divider {
        margin-left: 0;
        margin-right: 0;
    }

    .auth-subtitle-wrapper {
        position: relative;
        left: auto;
        right: auto;
        margin-left: -2rem;
        margin-right: -2rem;
        padding: 0.75rem 0;
    }

    .auth-subtitle-wrapper::before {
        left: -100vw;
        right: -100vw;
        background: rgba(0, 40, 80, 0.5);
    }

    .auth-subtitle {
        text-align: right;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        font-size: 15px;;
    }

    .wave-overlay {
        opacity: 1;
    }

    .auth-submit-btn {
        min-width: auto;
        display: inline-block;
        margin-left: auto;
        margin-right: 0;
        text-align: center;
    }

    .auth-title-light {
        font-size: 18px
    }

    .auth-title-bold {
        font-size: 20px;
    }

    .auth-logo-container {
        margin-bottom: 8px;
    }

    .auth-logo {
        height: 40px;
    }

    .auth-divider {
        margin-top: 16px;
        margin-bottom: 16px;
    }
}


@media (max-width: 767px) {
    .auth-right-section-content {
        padding: 1.5rem;
    }

    .auth-form-container {
        padding: 1rem;
        max-width: 400px;
    }

    .auth-logo-container,
    .auth-title-section,
    .auth-form {
        text-align: right;
    }

    .auth-title {
        align-items: flex-end;
    }

    .auth-subtitle {
        font-size: 0.875rem;
        text-align: right;
    }

    .auth-subtitle-wrapper {
        position: relative;
        left: auto;
        right: auto;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 0.75rem 1.5rem;
    }

    .auth-logo {
        max-width: 180px;
    }

    .auth-options {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .auth-submit-btn {
        min-width: auto;
        display: inline-block;
        margin-left: auto;
        margin-right: 0;
        text-align: center;
    }
}


@media (max-width: 575px) {

    .auth-logo-container,
    .auth-title-section,
    .auth-form {
        text-align: right;
    }

    .auth-title {
        align-items: flex-end;
    }

    .auth-subtitle {
        font-size: 0.813rem;
        padding: 0;
        text-align: right;
    }

    .auth-input {

        font-size: 0.813rem;
    }

    .auth-submit-btn {

        font-size: 0.813rem;
        display: inline-block;
        margin-left: auto;
        margin-right: 0;
        text-align: center;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .auth-logo {
        max-width: 150px;
    }

    .auth-form-container {
        max-width: 320px;
    }

}


@media (min-width: 1025px) and (max-width: 1399px) {
    .auth-subtitle-wrapper {
        margin-left: -15rem;
    }

    .auth-subtitle {
        font-size: 16px;
    }

    .auth-subtitle-wrapper::before {
        background: linear-gradient(to right,
        rgba(0, 40, 80, 0.00) 0%,
        rgba(0, 40, 80, 0.00) 5%,
        rgba(0, 40, 80, 0.1) 7%,
        rgba(0, 40, 80, 0.25) 12%,
        rgba(0, 40, 80, 0.55) 20%,
        rgba(0, 40, 80, 0.60) 30%,
        rgba(0, 40, 80, 0.7) 100%);
    }

    .auth-right-section-content {
        padding-left: 12rem;
        padding-right: 30px;
    }

    .auth-form-container {
        padding: 0;
        max-width: 330px;
    }

    .auth-title-light {
        font-size: 36px;
    }

    .auth-title-bold {
        font-size: 50px;
    }

    .auth-submit-btn {
        width: 100%;
        padding-top: 0.54rem;
        padding-bottom: 0.54rem;
    }
}


@media (min-width: 1400px) and (max-width: 2100px) {
    .auth-right-section-content {
        padding-left: 12rem;
        padding-right: 30px;
    }


    .auth-subtitle-wrapper {
        margin-left: -14rem;
    }

    .auth-subtitle-wrapper::before {
        background: linear-gradient(to right,
        rgba(0, 40, 80, 0.00) 3%,
        rgba(0, 40, 80, 0.1) 7%,
        rgba(0, 40, 80, 0.25) 12%,
        rgba(0, 40, 80, 0.55) 20%,
        rgba(0, 40, 80, 0.60) 30%,
        rgba(0, 40, 80, 0.7) 100%);
    }

    .auth-subtitle {
        padding-left: 13rem;
        font-size: 18px;
    }

    .auth-form-container {
        max-width: 390px;
    }

    .text-shadow {
        text-shadow: 8px 8px 8px rgba(0, 0, 0, 0.25);
    }
}

