:root {
    --asz-orange: #e85b24;
    --asz-orange-dark: #bd4820;
    --asz-navy: #10263f;
    --asz-text: #53657a;
    --asz-border: #d7e0e9;
    --asz-background: #f4f7fa;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--asz-navy);
    background: var(--asz-background);
}

.login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 58% 42%;
}


/* SOL ALAN */

.brand-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 70px 7%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(232, 91, 36, .13),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #fffaf7 0%,
            #f7f8fa 65%,
            #f2f5f8 100%
        );
}

.brand-section::before,
.brand-section::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(16, 38, 63, .08);
    border-radius: 50%;
    pointer-events: none;
}

.brand-section::before {
    width: 760px;
    height: 760px;
    top: -400px;
    left: -240px;
}

.brand-section::after {
    width: 820px;
    height: 820px;
    bottom: -610px;
    left: -250px;
}

.brand-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 85px;
}

.logo-placeholder {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        var(--asz-orange),
        var(--asz-orange-dark)
    );

    color: white;
    font-size: 20px;
    font-weight: 700;

    box-shadow: 0 12px 30px rgba(232, 91, 36, .18);
}

.brand-name {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
}

.brand-subtitle {
    margin-top: 5px;
    color: var(--asz-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    color: var(--asz-orange);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    margin: 0 0 24px;

    max-width: 650px;

    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.08;
    letter-spacing: -2.2px;
}

.hero p {
    max-width: 620px;
    margin: 0;

    color: var(--asz-text);

    font-size: 18px;
    line-height: 1.75;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;

    margin-top: 55px;
}

.feature-card {
    min-height: 90px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px;

    border: 1px solid var(--asz-border);
    border-radius: 16px;

    background: rgba(255, 255, 255, .78);

    box-shadow: 0 8px 25px rgba(16, 38, 63, .04);

    backdrop-filter: blur(8px);
}

.feature-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(232, 91, 36, .09);
    color: var(--asz-orange);

    font-size: 19px;
    font-weight: 700;
}

.feature-card strong {
    display: block;
    margin-bottom: 5px;

    font-size: 13px;
    font-weight: 600;
}

.feature-card span {
    display: block;

    color: var(--asz-text);

    font-size: 11px;
    line-height: 1.4;
}


/* SAĞ ALAN */

.form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 45px;

    background: #f3f6fa;
}

.login-card {
    width: 100%;
    max-width: 455px;

    padding: 42px 40px 36px;

    border: 1px solid var(--asz-border);
    border-radius: 22px;

    background: var(--white);

    box-shadow: 0 25px 60px rgba(16, 38, 63, .10);
}

.panel-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--asz-orange);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.login-header h2 {
    margin: 0 0 10px;

    font-size: 28px;
    letter-spacing: -.7px;
}

.login-header p {
    margin: 0 0 34px;

    color: var(--asz-text);

    font-size: 14px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    color: var(--asz-navy);

    font-size: 12px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    height: 58px;

    padding: 0 16px;

    border: 1px solid var(--asz-border);
    border-radius: 12px;

    outline: none;

    background: #fff;

    color: var(--asz-navy);

    font-family: inherit;
    font-size: 13px;

    transition: .2s ease;
}

.form-group input:focus {
    border-color: var(--asz-orange);

    box-shadow:
        0 0 0 3px rgba(232, 91, 36, .08);
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 75px;
}

.password-toggle {
    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    border: 0;
    padding: 5px;

    background: transparent;

    color: var(--asz-orange);

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;

    cursor: pointer;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 3px 0 30px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--asz-text);

    font-size: 12px;

    cursor: pointer;
}

.remember input {
    accent-color: var(--asz-orange);
}

.forgot-password {
    color: var(--asz-orange);

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

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

.login-button {
    width: 100%;
    height: 56px;

    border: 0;
    border-radius: 12px;

    background: linear-gradient(
        90deg,
        var(--asz-orange),
        var(--asz-orange-dark)
    );

    color: white;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 12px 25px rgba(232, 91, 36, .18);

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.login-button:hover {
    transform: translateY(-1px);

    box-shadow: 0 16px 30px rgba(232, 91, 36, .23);
}

.login-footer {
    margin-top: 32px;
    padding-top: 25px;

    border-top: 1px solid #edf0f3;

    color: var(--asz-text);

    font-size: 12px;
    line-height: 1.7;
}

.login-footer a {
    color: var(--asz-orange);
    font-weight: 600;
    text-decoration: none;
}

.security-note {
    margin-top: 22px;

    color: #8290a0;

    font-size: 11px;
    font-weight: 500;
}

.security-note span {
    margin-right: 6px;
    color: #43a66b;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .login-page {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .brand {
        margin-bottom: 55px;
    }
}

@media (max-width: 800px) {

    .login-page {
        display: block;
    }

    .brand-section {
        min-height: auto;
        padding: 45px 28px;
    }

    .brand {
        margin-bottom: 45px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .feature-grid {
        display: none;
    }

    .form-section {
        padding: 35px 20px 50px;
    }

    .login-card {
        max-width: 520px;
    }
}

@media (max-width: 480px) {

    .brand-section {
        padding: 32px 22px;
    }

    .brand {
        margin-bottom: 35px;
    }

    .logo-placeholder {
        width: 55px;
        height: 55px;
        border-radius: 13px;
    }

    .brand-name {
        font-size: 25px;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -1.2px;
    }

    .hero p {
        font-size: 15px;
    }

    .form-section {
        padding: 25px 15px 40px;
    }

    .login-card {
        padding: 32px 24px;
        border-radius: 18px;
    }
}


/* ASZ ADMIN LOGO */

.brand-logo {
    display: block;
    width: 310px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .brand-logo {
        width: 260px;
    }
}

/* GERCEK ASZ LOGO */

.asz-logo {
    display: block;
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex: 0 0 62px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 480px) {
    .asz-logo {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }
}
