:root {
    /*--artist-bg-start: #667eea;
    --artist-bg-end: #764ba2;*/
    --artist-bg-start: #6b7280;
    --artist-bg-end: #374151;
    /*--artist-login-grow-left: #7bb0ff;
    --artist-login-grow-right: #b67dff;*/
    --artist-login-grow-left: #9ca3af;
    --artist-login-grow-right: #5b6068;
    /*--artist-checkbox-color: #0d6efd;*/
    --artist-checkbox-color: #495057;
    --artist-checkbox-focus-shadow: #696b6d;
}

* {
    box-sizing: border-box;
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgb(182 4 21) !important;
}

.form-check-input:checked {
    background-color: var(--artist-checkbox-color) !important;
    border-color: var(--artist-checkbox-color) !important;
}

.form-check-input:focus {
    border-color: var(--artist-checkbox-color) !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem var(--artist-checkbox-focus-shadow) !important;
}

.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem var(--artist-checkbox-focus-shadow) !important;
}

.artist-login-body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(145deg, var(--artist-bg-start), var(--artist-bg-end));
    color: #fff;
}

.artist-login-scene {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.artist-login-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
    pointer-events: none;
}

.artist-login-glow-left {
    background: var(--artist-login-grow-left);
    left: -120px;
    top: 6%;
}

.artist-login-glow-right {
    background: var(--artist-login-grow-right);
    right: -120px;
    bottom: 8%;
}

.artist-login-card {
    position: relative;
    z-index: 2;
    border-radius: 1.4rem;
    padding: clamp(1.35rem, 2.8vw, 2rem);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 22px 46px rgba(17, 11, 39, 0.35);
    backdrop-filter: blur(14px);
}

.artist-login-brand {
    margin-bottom: 1.5rem;
}

.artist-login-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 0.65rem;
}

.artist-login-brand h1 {
    margin: 0;
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
    font-weight: 700;
}

.artist-login-alert {
    border: 0;
    border-radius: 0.75rem;
    background: rgba(175, 37, 69, 0.88);
    color: #fff;
}

.artist-login-form .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.artist-input-wrap {
    position: relative;
}

.artist-input-wrap i {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.65);
}

.artist-login-input {
    border-radius: 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: 0.74rem 0.86rem 0.74rem 2.6rem;
    transition: all 0.25s ease;
}

.artist-login-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.artist-login-input:focus {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 0.22rem rgba(255, 255, 255, 0.17);
}

.artist-login-options .form-check-label,
.artist-login-options .artist-forgot-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.artist-forgot-link {
    text-decoration: none;
}

.artist-forgot-link:hover {
    color: #fff;
    text-decoration: underline;
}

.artist-login-btn {
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.7rem 1.2rem;
    color: #3f2d73;
    background: #fff;
    box-shadow: 0 12px 22px rgba(9, 7, 19, 0.3);
    transition: all 0.25s ease;
}

.artist-login-btn:hover {
    color: #2f205d;
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(9, 7, 19, 0.35);
}

@media (max-width: 575.98px) {
    .artist-login-options {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.65rem;
    }
}
