/* Login page specific styles */

body.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 700px;
    width: 100%;
    margin: 1rem;
    animation: fadeIn 0.5s ease-out;
}

.brand-title {
    background: linear-gradient(45deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Tab styles */
.nav-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 10px 10px 0 0;
}

.nav-tabs .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

/* Wallet connection options */
.wallet-option {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
}

.wallet-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.wallet-option.connecting {
    border-color: #ffc107;
    background-color: #fff9e6;
}

.wallet-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form styles specific to login */
.login-container .form-control {
    border-radius: 10px;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
}

.login-container .btn-primary {
    border-radius: 10px;
    padding: 12px 30px;
    letter-spacing: 0.5px;
    width: 100%;
}

.login-container .btn-secondary {
    border-radius: 10px;
    padding: 12px 30px;
    width: 100%;
}

/* Demo mode button */
#demo-mode {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    color: white;
    margin-top: 1rem;
}

#demo-mode:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
}

/* Toggle links */
.text-toggle {
    color: #667eea;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.text-toggle:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Connecting animation */
.connecting-animation {
    animation: pulse 2s infinite;
}

/* Responsive design */
@media (max-width: 576px) {
    .login-container {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .wallet-option {
        padding: 1rem;
    }
    
    .wallet-icon {
        font-size: 2.5rem;
    }
}
