/* ==========================================================================
   Duman Prefabrik - Giriş Sayfası (Buzlu Cam)
   ========================================================================== */

.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.5rem;
}

/* Arka planda yumuşak, bulanık renkli lekeler - buzlu cam efektini belirginleştirir */
.login-bg-shapes {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.login-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.shape-1 {
    width: 26rem;
    height: 26rem;
    top: -8rem;
    left: -6rem;
    background: #3a4250;
}

.shape-2 {
    width: 22rem;
    height: 22rem;
    bottom: -6rem;
    right: -4rem;
    background: #2c3238;
}

.shape-3 {
    width: 18rem;
    height: 18rem;
    top: 40%;
    left: 60%;
    background: #454c58;
}

.login-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 26rem;
    padding: 2.75rem 2.25rem;
    border-radius: 1.25rem;
}

.login-brand {
    text-align: center;
    margin-bottom: 2.25rem;
}

.login-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--cam-bg-hover);
    border: 1px solid var(--cam-border-hover);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.login-brand h1 {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 0.4rem;
    font-style: italic;
}

.login-brand p {
    color: var(--metin-soluk);
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.login-error {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #fca5a5;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--metin-soluk);
}

.login-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--cam-border);
    border-radius: 0.6rem;
    padding: 0.85rem 1rem;
    transition: 0.25s;
}

.login-input-wrap:focus-within {
    border-color: var(--cam-border-hover);
    background: rgba(255, 255, 255, 0.07);
}

.login-input-wrap i {
    color: var(--metin-cok-soluk);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.login-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    min-width: 0;
}

.login-input-wrap input::placeholder {
    color: var(--metin-cok-soluk);
}

.login-eye {
    background: transparent;
    border: none;
    color: var(--metin-cok-soluk);
    cursor: pointer;
    padding: 0.2rem;
    flex-shrink: 0;
}

.login-eye:hover {
    color: #fff;
}

.login-submit {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 0.6rem;
    padding: 0.9rem 1.5rem;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: 0.25s;
}

.login-submit:hover {
    background: var(--metin-soluk);
    transform: translateY(-1px);
}

.login-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--metin-cok-soluk);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.2s;
}

.login-back:hover {
    color: #fff;
}
