/* Login Styles */
.infoball-login-container {
    max-width: 400px;
    margin: 40px auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.login-tabs {
    display: flex;
    background: #f8f9fa;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: white;
    color: #667eea;
    border-bottom: 2px solid #667eea;
}

.tab-content {
    padding: 30px;
    display: none;
}

.tab-content.active {
    display: block;
}

.infoball-form .form-group {
    margin-bottom: 20px;
}

.infoball-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.infoball-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.infoball-form input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.user-profile {
    padding: 30px;
    text-align: center;
}

.user-profile h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.user-profile p {
    margin: 0 0 20px 0;
    color: #666;
}

.btn-secondary {
    padding: 12px 30px;
    background: #f8f9fa;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
}

.messages.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.messages.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}