/* ===== LOGIN FORM STYLES ===== */

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.input-wrapper input:focus {
    outline: none;
    border-color: #FF6B9D;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 230, 240, 0.95));
}

.input-wrapper input:hover {
    border-color: #45B7D1;
    transform: translateY(-1px);
}

.input-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    color: #666;
    z-index: 2;
    transition: all 0.3s ease;
}

.input-wrapper input:focus + .input-icon {
    color: #4ECDC4;
    transform: scale(1.1);
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    color: #4ECDC4;
    transform: scale(1.1);
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    user-select: none;
    position: relative;
    padding-left: 0;
    min-height: 24px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: 0;
    z-index: 1;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    background: white;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label:hover .checkmark {
    border-color: #FF6B9D;
    box-shadow: 0 0 5px rgba(255, 107, 157, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #FF6B9D;
    border-color: #FF6B9D;
    box-shadow: 0 0 8px rgba(255, 107, 157, 0.5);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #FF6B9D, #FF69B4, #DDA0DD, #FFD700);
    background-size: 300% 300%;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    animation: buttonGradient 3s ease-in-out infinite;
}

@keyframes buttonGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

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

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

.btn-text {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.btn-loading {
    display: none;
}

.login-btn.loading .btn-text {
    opacity: 0;
}

.login-btn.loading .btn-loading {
    display: inline-block;
}

/* Loading Dots Animation */
.loading-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: loadingDot 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loadingDot {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Form Links */
.form-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.form-links a {
    color: #4ECDC4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-links a:hover {
    color: #45B7D1;
    text-decoration: underline;
}

/* Mouse Tracking Cat Styling */
.welcome-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.mouse-tracking-cat-container {
    flex-shrink: 0;
}

.mouse-tracking-cat {
    filter: drop-shadow(0 4px 8px rgba(44, 44, 44, 0.6));
}

/* Siyah kedi özel stilleri */
.mouse-tracking-cat ellipse {
    stroke: #1A1A1A;
    stroke-width: 1;
}

.mouse-tracking-cat path {
    stroke: #1A1A1A;
    stroke-width: 1;
}

.tracking-tail {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
}

/* Welcome Message Container */
.welcome-message {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
}

.tracking-head {
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}

@keyframes trackingHeadMove {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.tracking-ear {
    animation: trackingEarTwitch 3s infinite ease-in-out;
}

@keyframes trackingEarTwitch {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(4deg); }
}

/* Mouse tracking pupils - will be controlled by JavaScript */
.tracking-pupil {
    transition: transform 0.25s ease-out;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.tracking-pupil-left {
    transform-origin: 55px 67px;
}

.tracking-pupil-right {
    transform-origin: 85px 67px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .input-wrapper input {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
        font-size: 0.95rem;
    }
    
    .input-icon {
        font-size: 1.1rem;
    }
    
    .toggle-password {
        font-size: 1.1rem;
    }
    
    .login-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .welcome-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .mouse-tracking-cat {
        width: 80px;
        height: 70px;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .welcome-subtitle {
        font-size: 0.9rem;
    }
    
    .welcome-message-text p {
        font-size: 0.9rem;
    }
    
    .form-links {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .input-wrapper input {
        padding: 0.75rem 0.75rem 0.75rem 2.25rem;
        font-size: 0.9rem;
    }
    
    .input-icon {
        font-size: 1rem;
    }
    
    .toggle-password {
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .welcome-cat {
        width: 60px;
        height: 50px;
    }
    
    .welcome-title {
        font-size: 1.3rem;
    }
    
    .welcome-subtitle {
        font-size: 0.85rem;
    }
} 