/* Üye girişi / kayıt / şifre — marka teması (admin dark temadan ayrı) */
@import url("https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,500;7..72,700&family=Source+Sans+3:wght@400;600;700&display=swap");

.auth-member-page {
    --am-teal: #009996;
    --am-teal-dark: #007a78;
    --am-ink: #1a2b2a;
    --am-muted: #5a6e6c;
    --am-line: #d5e3e2;
    --am-paper: #f7fbfb;
    --am-card: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 28px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 80% 50% at 10% 0%, rgba(0, 153, 150, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 45% at 90% 100%, rgba(0, 120, 118, 0.12), transparent 50%),
        linear-gradient(165deg, #eef7f6 0%, #f7fbfb 45%, #e8f2f1 100%);
    font-family: "Source Sans 3", Calibri, "UKIJ Tuz Tom", Tahoma, sans-serif;
    color: var(--am-ink);
    box-sizing: border-box;
}

.auth-member-page *,
.auth-member-page *::before,
.auth-member-page *::after {
    box-sizing: border-box;
}

.auth-member-card {
    width: 100%;
    max-width: 440px;
    background: var(--am-card);
    border: 1px solid var(--am-line);
    border-radius: 18px;
    padding: 36px 32px 28px;
    box-shadow: 0 18px 48px rgba(0, 80, 78, 0.1);
    position: relative;
    overflow: hidden;
}

.auth-member-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--am-teal), #33b8b5 55%, #7ad4d1);
}

.auth-member-brand {
    text-align: center;
    margin-bottom: 8px;
}

.auth-member-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(145deg, #e6f7f6, #fff);
    border: 1px solid var(--am-line);
    color: var(--am-teal);
    font-size: 26px;
    margin-bottom: 14px;
}

.auth-member-title {
    text-align: center;
    font-family: Literata, Calibri, "UKIJ Tuz Tom", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--am-teal-dark);
    margin: 0 0 6px;
    letter-spacing: 0.2px;
}

.auth-member-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--am-muted);
    margin: 0 0 26px;
}

.auth-member-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--am-teal-dark);
    background: #e6f7f6;
    border: 1px solid #b8e0dd;
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.auth-member-alert {
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    text-align: center;
}

.auth-member-alert--error {
    background: #fdf2f2;
    border: 1px solid #f0c4c4;
    color: #a94442;
}

.auth-member-alert--success {
    background: #edf8ef;
    border: 1px solid #b7dfc0;
    color: #2e7d4f;
}

.auth-member-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--am-muted);
    margin-bottom: 7px;
}

.auth-member-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #c9d9d8;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    color: var(--am-ink);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-member-input:focus {
    border-color: var(--am-teal);
    box-shadow: 0 0 0 3px rgba(0, 153, 150, 0.18);
}

.auth-member-input--password {
    padding-right: 44px;
    background: #f9fcfc;
}

.auth-member-field {
    margin-bottom: 16px;
}

.auth-member-field-wrap {
    position: relative;
}

.auth-member-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
    padding: 4px;
    opacity: 0.55;
    color: var(--am-muted);
}

.auth-member-eye:hover {
    opacity: 1;
}

.auth-member-btn {
    width: 100%;
    padding: 13px 20px;
    border: none;
    border-radius: 10px;
    background: var(--am-teal);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}

.auth-member-btn:hover {
    background: var(--am-teal-dark);
}

.auth-member-btn:active {
    transform: scale(0.99);
}

.auth-member-divider {
    text-align: center;
    color: #8aa3a1;
    font-size: 13px;
    margin: 18px 0;
}

.auth-member-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--am-line);
    border-radius: 10px;
    text-decoration: none;
    color: var(--am-ink);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    transition: border-color 0.15s, background 0.15s;
}

.auth-member-google:hover {
    background: #f3fafa;
    border-color: #a9cecc;
    color: var(--am-ink);
    text-decoration: none;
}

.auth-member-links {
    text-align: center;
    margin-top: 22px;
    font-size: 14px;
    color: var(--am-muted);
}

.auth-member-links a {
    color: var(--am-muted);
    text-decoration: none;
}

.auth-member-links a:hover,
.auth-member-links .accent {
    color: var(--am-teal-dark);
}

.auth-member-links--stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.auth-member-code-box {
    text-align: center;
    padding: 22px 16px;
    margin: 18px 0 8px;
    background: #f3fafa;
    border: 2px dashed var(--am-teal);
    border-radius: 12px;
}

.auth-member-code-label {
    font-size: 13px;
    color: var(--am-muted);
    margin-bottom: 10px;
}

.auth-member-code {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 10px;
    color: var(--am-teal-dark);
    font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
}

.auth-member-code-hint {
    font-size: 12px;
    color: var(--am-muted);
    margin-top: 10px;
    line-height: 1.5;
}

.ug-field {
    font-family: Calibri, "UKIJ Tuz Tom", Tahoma, sans-serif;
}

@media (max-width: 480px) {
    .auth-member-card {
        padding: 28px 20px 22px;
    }
}
