/* Genel Konteyner ve Duyarlılık */
.login-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 100%;
    height: 100dvh;
}

.login-container-bg {
    background: url(../img/blue-bg.png) !important;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .05;
}

@media (min-width: 968px) {
    .login-container {
        flex-direction: row;
        margin: 0;
    }
}

.form-img-area img {
    object-fit: contain;
}

/* Sağ Panel - Giriş Formu */
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100dvh;
}

@media (min-width: 1024px) {
    .login-form {
        width: 60%;
    }
}

@media (min-width: 1280px) {
    .login-form {
        width: 66.666667%;
    }
}

.form-img-area {
    text-align: center;
}

.form-content {
    z-index: 9;
    width: 50%;
    margin: auto;
}

.form-heading {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}

.form-subheading {
    text-align: center;
    color: #71717a;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #3f3f46;
    margin-bottom: 0.25rem;
    margin-left: .5rem;
}

.form-input {
    width: calc(100% - 2rem);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #d4d4d8;
    outline: none;
    transition: border-color .5s;
}

.form-input:focus {
    border-color: #18181b;
}

.password-input-container {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    inset: 0 0 0 auto;
    right: 1rem;
    display: flex;
    align-items: center;
    color: #a1a1aa;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 1.5rem;
}

.forgot-password {
    color: #52525b;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    background: #b79845;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background .5s;
}

.login-btn:hover {
    background: #aa914f;
}