/* assets/css/login.css */




/* assets/css/login.css */
.studio-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    margin: 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Keep all existing styles from your login.css */

/* Animated Background Elements */
.sfcp-login-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108,99,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 20s ease-in-out infinite;
}

.sfcp-login-wrapper::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108,99,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 25s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.sfcp-login-card {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 44px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Studio Logo */
.sfcp-login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.sfcp-login-logo .logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.sfcp-login-logo .logo-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #6c63ff, #5a52d5);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 8px 25px rgba(108,99,255,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulseLogo 3s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% { box-shadow: 0 8px 25px rgba(108,99,255,0.3); }
    50% { box-shadow: 0 8px 35px rgba(108,99,255,0.5); }
}

.sfcp-login-logo .logo-icon:hover {
    transform: scale(1.05) rotate(-5deg);
}

.sfcp-login-logo .logo-text {
    text-align: left;
}

.sfcp-login-logo .logo-text h1 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.5px;
}

.sfcp-login-logo .logo-text .logo-sub {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Welcome Text */
.sfcp-login-welcome {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px;
}

.sfcp-login-sub {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* Form */
.sfcp-login-form .form-group {
    margin-bottom: 20px;
}

.sfcp-login-form .form-group label {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.sfcp-login-form .form-group .input-wrapper {
    position: relative;
}

.sfcp-login-form .form-group .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.2);
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.sfcp-login-form .form-group input:focus ~ .input-icon {
    color: #6c63ff;
}

.sfcp-login-form input[type="text"],
.sfcp-login-form input[type="email"],
.sfcp-login-form input[type="password"] {
    width: 100%;
    padding: 13px 16px 13px 44px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.sfcp-login-form input::placeholder {
    color: rgba(255,255,255,0.2);
}

.sfcp-login-form input:focus {
    outline: none;
    border-color: #6c63ff;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(108,99,255,0.1);
}

.sfcp-login-form input:focus + .input-icon {
    color: #6c63ff;
}

/* Options */
.sfcp-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 22px 0 28px 0;
}

.sfcp-login-options label {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease;
}

.sfcp-login-options label:hover {
    color: rgba(255,255,255,0.7);
}

.sfcp-login-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #6c63ff;
    cursor: pointer;
    border-radius: 4px;
}

.sfcp-login-options a {
    color: #6c63ff;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.sfcp-login-options a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6c63ff;
    transition: width 0.3s ease;
}

.sfcp-login-options a:hover::after {
    width: 100%;
}

.sfcp-login-options a:hover {
    color: #a78bfa;
}

/* Submit Button */
.sfcp-btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #6c63ff, #5a52d5);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.sfcp-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.sfcp-btn-primary:hover::before {
    left: 100%;
}

.sfcp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108,99,255,0.4);
}

.sfcp-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(108,99,255,0.3);
}

.sfcp-btn-primary .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sfcp-btn-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.sfcp-btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Footer */
.sfcp-login-footer {
    text-align: center;
    margin-top: 28px;
    color: rgba(255,255,255,0.25);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.sfcp-login-footer .footer-heart {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 480px) {
    .sfcp-login-card {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .sfcp-login-logo .logo-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .sfcp-login-logo .logo-text {
        text-align: center;
    }
    
    .sfcp-login-logo .logo-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 20px;
    }
    
    .sfcp-login-logo .logo-text h1 {
        font-size: 22px;
    }
    
    .sfcp-login-welcome {
        font-size: 20px;
        text-align: center;
    }
    
    .sfcp-login-sub {
        font-size: 13px;
        text-align: center;
    }
    
    .sfcp-login-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .sfcp-login-form input[type="text"],
    .sfcp-login-form input[type="email"],
    .sfcp-login-form input[type="password"] {
        padding: 12px 14px 12px 40px;
        font-size: 14px;
    }
    
    .sfcp-btn-primary {
        padding: 13px;
        font-size: 15px;
    }
}