﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
    background: linear-gradient(135deg,#E3F2FD 0%,#F0F4F9 50%,#E8F5E9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.sl-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08),0 1px 3px rgba(0,0,0,.04);
    width: 100%;
    max-width: 420px;
    overflow: hidden
}

.sl-header {
    text-align: center;
    padding: 36px 32px 24px;
    background: linear-gradient(135deg,#f8fbff,#f0f7ff);
    border-bottom: 1px solid #E7EDF3
}

.sl-logo {
    height: 32px;
    margin-bottom: 16px
}

.sl-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37,163,228,.08);
    color: #25a3e4;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px
}

.sl-title {
    font-size: 22px;
    font-weight: 700;
    color: #1B2559;
    margin-bottom: 4px
}

.sl-subtitle {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5
}

.sl-body {
    padding: 28px 32px 32px
}

.sl-step {
    display: none
}

    .sl-step.active {
        display: block
    }

.sl-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px
}

.sl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E7EDF3;
    transition: all .3s ease
}

    .sl-dot.active {
        background: #25a3e4;
        width: 24px;
        border-radius: 4px
    }

    .sl-dot.done {
        background: #06D6A0
    }

.sl-field {
    margin-bottom: 20px
}

.sl-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 6px
}

.sl-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #E7EDF3;
    border-radius: 12px;
    background: #F8FAFC;
    transition: all .2s ease
}

    .sl-input-wrap:focus-within {
        border-color: #25a3e4;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(37,163,228,.08)
    }

    .sl-input-wrap .sl-ico {
        position: absolute;
        left: 14px;
        color: #94A3B8;
        font-size: 18px;
        pointer-events: none;
        transition: color .2s
    }

    .sl-input-wrap:focus-within .sl-ico {
        color: #25a3e4
    }

.sl-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 14px 14px 44px;
    font-size: 15px;
    color: #1B2559;
    font-family: inherit
}

    .sl-input::placeholder {
        color: #CBD5E1
    }

.sl-pw-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #94A3B8;
    cursor: pointer;
    font-size: 18px;
    padding: 4px
}

    .sl-pw-toggle:hover {
        color: #64748B
    }

.sl-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s ease;
    font-family: inherit
}

.sl-btn-primary {
    background: #25a3e4;
    color: #fff
}

    .sl-btn-primary:hover {
        background: #1e8bc3
    }

    .sl-btn-primary:disabled {
        opacity: .6;
        cursor: not-allowed
    }

.sl-btn-success {
    background: #06D6A0;
    color: #fff
}

    .sl-btn-success:hover {
        background: #05B384
    }

.sl-alert {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    display: none;
    line-height: 1.5
}

    .sl-alert.show {
        display: block
    }

    .sl-alert.err {
        background: #FEF2F2;
        color: #DC2626;
        border: 1px solid #FECACA
    }

    .sl-alert.ok {
        background: #F0FDF4;
        color: #16A34A;
        border: 1px solid #BBF7D0
    }

    .sl-alert.info {
        background: #EFF6FF;
        color: #2563EB;
        border: 1px solid #BFDBFE
    }

.sl-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #E7EDF3;
    margin-bottom: 20px
}

    .sl-info i {
        color: #25a3e4;
        font-size: 18px;
        flex-shrink: 0;
        margin-top: 1px
    }

    .sl-info p {
        font-size: 12px;
        color: #64748B;
        line-height: 1.5
    }

.sl-welcome {
    text-align: center;
    padding: 16px;
    margin-bottom: 20px;
    background: linear-gradient(135deg,rgba(6,214,160,.06),rgba(37,163,228,.06));
    border-radius: 12px;
    border: 1px solid rgba(6,214,160,.15)
}

.sl-welcome-name {
    font-size: 16px;
    font-weight: 700;
    color: #1B2559
}

.sl-welcome-company {
    font-size: 13px;
    color: #64748B;
    margin-top: 2px
}

.sl-welcome-msg {
    font-size: 12px;
    color: #06D6A0;
    font-weight: 600;
    margin-top: 8px
}

.sl-pw-strength {
    display: flex;
    gap: 4px;
    margin-top: 8px
}

.sl-pw-bar {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: #E7EDF3;
    transition: background .3s
}

    .sl-pw-bar.weak {
        background: #EF4444
    }

    .sl-pw-bar.medium {
        background: #F59E0B
    }

    .sl-pw-bar.strong {
        background: #06D6A0
    }

.sl-pw-text {
    font-size: 11px;
    color: #94A3B8;
    margin-top: 4px
}

.sl-footer {
    text-align: center;
    padding: 16px 32px 24px;
    font-size: 11px;
    color: #94A3B8
}

    .sl-footer a {
        color: #25a3e4;
        text-decoration: none;
        font-weight: 600
    }

.sl-spin {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sl-spin .6s linear infinite
}

.muys-link-btn:hover {
    border-color: #25a3e4;
    background: #F8FBFF;
}

@keyframes sl-spin {
    to {
        transform: rotate(360deg)
    }
}

/* ŞİFREMİ UNUTTUM LİNK */
.sl-forgot-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #25a3e4;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: color .15s
}

    .sl-forgot-link:hover {
        color: #1e8bc3;
        text-decoration: underline
    }

/* MODAL */
.sl-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 20px;
    backdrop-filter: blur(4px)
}

    .sl-modal-backdrop.active {
        display: flex
    }

.sl-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    overflow: hidden;
    animation: sl-modal-in .25s ease
}

@keyframes sl-modal-in {
    from {
        opacity: 0;
        transform: scale(.95) translateY(10px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.sl-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #E7EDF3;
    background: #F8FAFC
}

.sl-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #1B2559;
    display: flex;
    align-items: center;
    gap: 8px
}

.sl-modal-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #94A3B8;
    cursor: pointer;
    padding: 4px;
    line-height: 1
}

    .sl-modal-close:hover {
        color: #EF4444
    }

.sl-modal-body {
    padding: 24px
}

.sl-modal-foot {
    padding: 16px 24px 24px;
    display: flex;
    gap: 10px
}

    .sl-modal-foot .sl-btn {
        flex: 1
    }

.sl-btn-outline-modal {
    background: transparent;
    color: #64748B;
    border: 2px solid #E7EDF3
}

    .sl-btn-outline-modal:hover {
        background: #F4F7FE
    }

.sl-btn-warning {
    background: #F59E0B;
    color: #fff
}

    .sl-btn-warning:hover {
        background: #D97706
    }
