/* ---------- LOGIN PAGE MODERN UI ---------- */

.scsr-form {
    max-width: 420px;
    margin: 40px auto;
    background: #ffffff;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    border: 1px solid #f3f3f3;
    font-family: 'Inter', sans-serif;
}

.scsr-form h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
    text-align: center;
}

.scsr-form label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.scsr-form input,
.scsr-form select {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #e1e1e1;
    margin-bottom: 16px;
    transition: 0.25s all ease;
    background: #fafafa;
    font-size: 15px;
}

.scsr-form input:focus,
.scsr-form select:focus {
    border-color: #6f4af1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(111, 74, 241, 0.1);
    outline: none;
}

.scsr-btn-login,
.scsr-form button {
    width: 100%;
    padding: 14px;
    background: #6f4af1;
    color: #fff;
    border-radius: 14px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.25s ease;
}

.scsr-form button:hover {
    background: #5637d6;
    transform: translateY(-2px);
}

.scsr-error {
    background: #ffe7e7;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #ff4b4b;
}

.scsr-error p {
    color: #b30d0d;
    margin: 0;
    font-size: 14px;
}

.scsr-small {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.scsr-small a {
    color: #6f4af1;
    font-weight: 600;
}

.scsr-register {
    margin-top: 60px;
    margin-bottom: 60px;
}

/* ------ Pending Page Premium UI ------ */

.scsr-pending {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.scsr-p-text {
    text-align: center;
    color: #444;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.scsr-pending-box {
    background: #f7f6ff;
    border: 1px solid #e6e4ff;
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.scsr-pending-box p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

/* Yükleniyor animasyonu */
.loader {
    width: 22px;
    height: 22px;
    border: 3px solid #d4caff;
    border-top-color: #6f4af1;
    border-radius: 50%;
    display: block;
    margin: 0 auto 12px auto;
    animation: spinSCSR 0.8s linear infinite;
}

@keyframes spinSCSR {
    to {
        transform: rotate(360deg);
    }
}
