.login-screen {
    height: 100%;
    font-family: "Roboto", sans-serif;
}

.left-block,
.right-block {
    padding: 0;
}

.left-block .item {
    position: relative;
    padding: 30px;
    width: 100%;
    height: 100vh;
    background: url("/images/login-bg.png") no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.right-block .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    width: 100%;
    height: 100%;
    background: rgb(0, 82, 123);
    background: -moz-linear-gradient(
        45deg,
        rgba(0, 82, 123, 1) 0%,
        rgba(0, 124, 186, 1) 100%
    );
    background: -webkit-linear-gradient(
        45deg,
        rgba(0, 82, 123, 1) 0%,
        rgba(0, 124, 186, 1) 100%
    );
    background: linear-gradient(
        45deg,
        rgba(0, 82, 123, 1) 0%,
        rgba(0, 124, 186, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00527b",endColorstr="#007cba",GradientType=1);
}

.right-block .form-area {
    width: 100%;
    text-align: center;
    max-width: 493px;
}
.right-block .login-text {
    font-weight: bold;
    color: white;
    margin-bottom: 68px;
    font-size: 18px;
}
.right-block .form-group {
    position: relative;
    width: 100%;
}
.right-block .form-group:nth-last-child(1) {
    margin-bottom: 56px;
}
.right-block .form-area .form-login-title {
    font-size: 56px;
    color: #ffffff;
    font-weight: bold;
    line-height: 37px;
    margin-bottom: 80px;
    font-family: "Source Sans Pro", sans-serif;
}
.right-block .form-area .form-login-title h1 {
    font-weight: bold;
}
@media (min-width: 375px) {
    .right-block .form-area .form-login-title h1 {
        font-size: 46px;
    }
}
@media (min-width: 1440px) {
    .right-block .form-area .form-login-title h1 {
        font-size: 50px;
    }
}
@media (min-width: 2560px) {
    .right-block .form-area .form-login-title h1 {
        font-size: 56px;
    }
}

.right-block .input-icon {
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
}

input:-webkit-autofill::first-line,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active
.right-block .lock-input {
    font-family: sans-serif !important;
    color: #003d5e !important;
    font-weight: "normal" !important;
    font-size: 18px !important;
}

.right-block .lock-input {
    height: 60px;
    border-radius: 40px;
    border: 2px solid transparent;
    width: 100%;
    padding-left: 65px;
    /*color: #003D5E;*/
    /*font-weight: bold;*/
    /*font-size: 18px;*/
}
.lock-input::-webkit-input-placeholder {
    font-weight: lighter;
    color: #8fa6b2;
}
.lock-input::-moz-placeholder {
    font-weight: lighter;
    color: #8fa6b2;
}
.lock-input::-ms-input-placeholder {
    font-weight: lighter;
    color: #8fa6b2;
}
.right-block .lock-input:focus {
    border: 2px solid #10cfc9;
    box-shadow: 0px 0px 20px rgba(0, 95, 145, 0.5);
}

.right-block .btn-login {
    position: relative;
    width: 100%;
    border-radius: 40px;
    font-size: 30px;
    color: #ffffff;
    font-weight: 900;
    padding: 7px 0;
    border: 2px solid #10cfc9;
    background: rgb(16, 207, 201);
    background: -moz-linear-gradient(
        90deg,
        rgba(16, 207, 201, 1) 0%,
        rgba(8, 165, 195, 1) 100%
    );
    background: -webkit-linear-gradient(
        90deg,
        rgba(16, 207, 201, 1) 0%,
        rgba(8, 165, 195, 1) 100%
    );
    background: linear-gradient(
        90deg,
        rgba(16, 207, 201, 1) 0%,
        rgba(8, 165, 195, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#10cfc9",endColorstr="#08a5c3",GradientType=1);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.17);
    transition: transform 0.5s;
}

.right-block .btn-login img {
    position: absolute;
    right: 20px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    transition: transform 0.5s;
    width: 35px;
}

.right-block .btn-login:hover img {
    transform: translateX(3px);
}
.right-block .btn-login:hover {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.17);
}
.right-block .btn-login:focus {
    transform: scale(0.95);
}
.right-block .password-remember {
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
}
.right-block .footer-area {
    color: #ffffff;
    font-size: 12px;
    /*letter-spacing: 2.3px;*/
}
.right-block .footer-area .btn-link {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}
.right-block .alert-warning {
    background-color: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 40px;
}

.right-block .alert-success {
    background-color: #fffbe6;
    border: 1px solid #b7eb8f;
    border-radius: 40px;
    font-size: 16px;
    color: #3c763d;
    font-weight: 600 !important;
}

.left-block .login-logo {
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

nav {
    display: flex;
    justify-content: space-between;
    height: 26px;
    width: 100%;
}
nav,
a {
    color: white;
    font-size: 18px;
}
.nav-left .demo-link {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #ffffff;
}
.nav-left .demo-link span {
    margin-left: 10px;
}
.nav-right {
    display: flex;
    align-items: center;
}
.nav-right .time-area {
    font-size: 18px;
}
.nav-right .time-area #time-block {
    margin-left: 8px;
    letter-spacing: 1px;
}
.nav-right .time-area .date-block {
    margin-left: 8px;
    letter-spacing: 1px;
}

.nav-right .language-area {
    margin-left: 26px;
    display: flex;
    align-items: center;
    font-size: 18px;
}
.nav-right .language-area .active {
    font-weight: bold;
}
.nav-right .language-area .line {
    content: "";
    display: block;
    position: relative;
    height: 12px;
    width: 2px;
    margin: 0 8px;
    background-color: #ffffff;
}

/* Custom Toast */
#toast-bildirim {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    min-width: 280px;
    max-width: 400px;
    padding: 14px 18px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

#toast-bildirim.toast-goster {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#toast-bildirim.toast-kapat {
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
}

#toast-bildirim.bg-warning {
    background: #fffbe6 !important;
    border: 1px solid #ffe58f !important;
    color: #664d03 !important;
}

#toast-bildirim.bg-success {
    background: #f0fdf4 !important;
    border: 1px solid #16a34a !important;
    color: #14532d !important;
}

#toast-kapat-btn {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.5;
    padding: 0;
    flex-shrink: 0;
    color: inherit;
}

#toast-kapat-btn:hover { opacity: 1; }

/* Şifre Kural Kartı */
.sifre-kural-karti {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 40px;
}

.sifre-kural-baslik {
    color: #10cfc9;
    letter-spacing: 0.05em;
    font-size: 14px;
}

.sifre-kural-karti li {
    font-size: 14px;
    transition: color 0.2s ease;
}

.sifre-kural-karti li .fa {
    font-size: 18px;
    flex-shrink: 0;
}

.sifre-kural-karti li.kural-gecti {
    color: #10cfc9;
}

.sifre-kural-karti li.kural-gecti .fa {
    color: #10cfc9;
}
